public static enum DataStoreTypes.ChangeSetType extends java.lang.Enum<DataStoreTypes.ChangeSetType>
This class is not stable, and not subject to any backwards compatibility guarantees or semantic versioning. It is in early access. If you want access to this feature please join the EAP. https://launchdarkly.com/docs/sdk/features/data-saving-mode
| Enum Constant and Description |
|---|
Full
Represents a full store configuration which replaces all data currently in the store.
|
None
Indicates that there are no store changes.
|
Partial
Represents an incremental set of changes to be applied to the existing data in the store.
|
| Modifier and Type | Method and Description |
|---|---|
static DataStoreTypes.ChangeSetType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataStoreTypes.ChangeSetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataStoreTypes.ChangeSetType Full
public static final DataStoreTypes.ChangeSetType Partial
public static final DataStoreTypes.ChangeSetType None
public static DataStoreTypes.ChangeSetType[] values()
for (DataStoreTypes.ChangeSetType c : DataStoreTypes.ChangeSetType.values()) System.out.println(c);
public static DataStoreTypes.ChangeSetType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null