Enum Class ConfigurationAreaFile.RestructureMode
java.lang.Object
java.lang.Enum<ConfigurationAreaFile.RestructureMode>
de.bsvrz.puk.config.configFile.fileaccess.ConfigurationAreaFile.RestructureMode
- All Implemented Interfaces:
Serializable
,Comparable<ConfigurationAreaFile.RestructureMode>
,Constable
- Enclosing interface:
- ConfigurationAreaFile
public static enum ConfigurationAreaFile.RestructureMode
extends Enum<ConfigurationAreaFile.RestructureMode>
Definiert die Art einer Restrukturierung
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionVolle Restrukturierung, bei der zusätzlich vorher markierte Objekte gelöscht (d. h. nicht mitkopiert) werden.Restrukturierung der dynamischen Objekte im laufenden Betrieb.Volle Restrukturierung der Konfigurationsobjekte und dynamischen Objekte. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FullRestructure
Volle Restrukturierung der Konfigurationsobjekte und dynamischen Objekte. Lücken (Gaps) werden gefüllt. Alle Dateipositionen können sich ändern, daher darf diese Restrukturierung nur Offline ausgeführt werden, oder bevor Dateipositionen gecacht werden (also direkt beim Start). -
DynamicObjectRestructure
Restrukturierung der dynamischen Objekte im laufenden Betrieb. Die Objekte, die sich vorher in der Mischmenge befanden, erhalten (sehr wahrscheinlich) eine neue Dateipostion. Ungültige dynamische Objekte werden in den NgDyn-Block verschoben, Gültige und zukünftige Objekte bleiben in der Mischmenge, wandern dort aber ggf. an eine andere Position. -
DeleteObjectsPermanently
Volle Restrukturierung, bei der zusätzlich vorher markierte Objekte gelöscht (d. h. nicht mitkopiert) werden.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-