@NotStorableClass public enum EnumStoreMode extends Enum<EnumStoreMode>
Enum Constant and Description |
---|
NOT_USE_STANDARD_SERIALIZATION |
SERIALIZE_AND_G_ZIPPED_IN_ONE_RECORD |
SERIALIZE_AND_ZIPPED_IN_ONE_RECORD |
SERIALIZE_IN_ONE_RECORD |
STORABLE |
STORE_NOT_LAZY |
Modifier and Type | Method and Description |
---|---|
static EnumStoreMode |
forValue(String value) |
String |
getValue() |
static EnumStoreMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumStoreMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumStoreMode SERIALIZE_IN_ONE_RECORD
public static final EnumStoreMode SERIALIZE_AND_ZIPPED_IN_ONE_RECORD
public static final EnumStoreMode SERIALIZE_AND_G_ZIPPED_IN_ONE_RECORD
public static final EnumStoreMode NOT_USE_STANDARD_SERIALIZATION
public static final EnumStoreMode STORE_NOT_LAZY
public static final EnumStoreMode STORABLE
public static EnumStoreMode[] values()
for (EnumStoreMode c : EnumStoreMode.values()) System.out.println(c);
public static EnumStoreMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullpublic static EnumStoreMode forValue(String value)
public String getValue()
Copyright © 2007-2012 Luc Peuvrier. All Rights Reserved.