|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<SerializationMode> com.thoughtworks.proxy.toys.pool.SerializationMode
public enum SerializationMode
The mode of serialization for pools.
Enum Constant Summary | |
---|---|
FORCE
FORCE is the value for serialization of the pool with or without serializable
objects. |
|
NONE
NONE is the value for serialization of the pool without the objects. |
|
STANDARD
STANDARD is the value for the standard serialization of the pool with its objects. |
Method Summary | |
---|---|
static SerializationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static SerializationMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final SerializationMode FORCE
FORCE
is the value for serialization of the pool with or without serializable
objects. If the objects cannot be serialized, the pool is empty after serialization and must be populated again.
public static final SerializationMode STANDARD
STANDARD
is the value for the standard serialization of the pool with its objects.
If the objects cannot be serialized, a NotSerializableException
is thrown.
public static final SerializationMode NONE
NONE
is the value for serialization of the pool without the objects. The pool is
empty after serialization and must be populated again.
Method Detail |
---|
public static SerializationMode[] values()
for (SerializationMode c : SerializationMode.values()) System.out.println(c);
public static SerializationMode 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
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |