
public static enum IStore.ChangeFormat extends Enum<IStore.ChangeFormat>
store can accept for commit operations.| Enum Constant and Description |
|---|
DELTA
An indication that the store accepts incremental
revision deltas for dirty objects. |
REVISION
An indication that the store accepts full
revisions for dirty objects. |
| Modifier and Type | Method and Description |
|---|---|
static IStore.ChangeFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IStore.ChangeFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IStore.ChangeFormat REVISION
revisions for dirty objects.public static final IStore.ChangeFormat DELTA
revision deltas for dirty objects.public static IStore.ChangeFormat[] values()
for (IStore.ChangeFormat c : IStore.ChangeFormat.values()) System.out.println(c);
public static IStore.ChangeFormat 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 (c) 2011, 2012 Eike Stepper (Berlin, Germany) and others.