public static enum TerracottaConfiguration.ValueMode extends Enum<TerracottaConfiguration.ValueMode>
Enum Constant and Description |
---|
IDENTITY
Use Terracotta clustered identity to preserve object identity without serialization
|
SERIALIZATION
When a key or value is put in the cache, serialize the data for sending around the cluster
|
Modifier and Type | Method and Description |
---|---|
static TerracottaConfiguration.ValueMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TerracottaConfiguration.ValueMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TerracottaConfiguration.ValueMode SERIALIZATION
public static final TerracottaConfiguration.ValueMode IDENTITY
public static TerracottaConfiguration.ValueMode[] values()
for (TerracottaConfiguration.ValueMode c : TerracottaConfiguration.ValueMode.values()) System.out.println(c);
public static TerracottaConfiguration.ValueMode 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 nullCopyright © 2003-2013 Terracotta, Inc.. All Rights Reserved.