|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<PersistenceMode>
de.bsvrz.puk.config.xmlFile.properties.PersistenceMode
public enum PersistenceMode
Aufzählung für die verschiedenen Persistenzmodi der dynamischen Objekte eines Typs
Enum Constant Summary | |
---|---|
PERSISTENT_AND_INVALID_ON_RESTART
Dynamische Objekte werden persistent gespeichert und beim Neustart auf ungültig gesetzt. |
|
PERSISTENT_OBJECTS
Dynamische Objekte werden persistent gespeichert. |
|
TRANSIENT_OBJECTS
Dynamische Objekte werden nicht persistent gespeichert. |
|
UNDEFINED
Es wurde nicht festgelegt, wie mit dynamischen Objekten verfahren werden soll |
Method Summary | |
---|---|
static PersistenceMode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static PersistenceMode[] |
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 |
---|
public static final PersistenceMode TRANSIENT_OBJECTS
public static final PersistenceMode PERSISTENT_OBJECTS
public static final PersistenceMode PERSISTENT_AND_INVALID_ON_RESTART
public static final PersistenceMode UNDEFINED
Method Detail |
---|
public static final PersistenceMode[] values()
for(PersistenceMode c : PersistenceMode.values()) System.out.println(c);
public static PersistenceMode valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |