de.bsvrz.puk.config.configFile.datamodel
Enum ConfigConfigurationArea.KindOfLastChange

java.lang.Object
  extended by java.lang.Enum<ConfigConfigurationArea.KindOfLastChange>
      extended by de.bsvrz.puk.config.configFile.datamodel.ConfigConfigurationArea.KindOfLastChange
All Implemented Interfaces:
Serializable, Comparable<ConfigConfigurationArea.KindOfLastChange>
Enclosing class:
ConfigConfigurationArea

static enum ConfigConfigurationArea.KindOfLastChange
extends Enum<ConfigConfigurationArea.KindOfLastChange>

Mit diesem Enum kann angegeben werden, ob ein dynamisches Objekt, ein Konfigurationsobjekt oder ein konfigurierender Datensatz geändert wurde.


Enum Constant Summary
ConfigurationData
           
ConfigurationObject
           
DynamicObject
           
 
Method Summary
static ConfigConfigurationArea.KindOfLastChange valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ConfigConfigurationArea.KindOfLastChange[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

DynamicObject

public static final ConfigConfigurationArea.KindOfLastChange DynamicObject

ConfigurationObject

public static final ConfigConfigurationArea.KindOfLastChange ConfigurationObject

ConfigurationData

public static final ConfigConfigurationArea.KindOfLastChange ConfigurationData
Method Detail

values

public static final ConfigConfigurationArea.KindOfLastChange[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(ConfigConfigurationArea.KindOfLastChange c : ConfigConfigurationArea.KindOfLastChange.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static ConfigConfigurationArea.KindOfLastChange valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name