public enum SnapshotSecurityLevel extends Enum<SnapshotSecurityLevel>
Enum Constant and Description |
---|
DISABLED
Snapshot file registry is not created and never validated if present (default).
|
IGNORE_EXISTING
Snapshot file registry is included into new snapshots.
|
IGNORE_MISSING
Snapshot file registry is included into new snapshots.
|
REQUIRE
Snapshot file registry is included into new snapshots.
|
Modifier and Type | Method and Description |
---|---|
static @Nullable SnapshotSecurityLevel |
fromOrdinal(int ord)
Efficiently gets enumerated value from its ordinal.
|
static SnapshotSecurityLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SnapshotSecurityLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SnapshotSecurityLevel DISABLED
public static final SnapshotSecurityLevel IGNORE_EXISTING
public static final SnapshotSecurityLevel IGNORE_MISSING
public static final SnapshotSecurityLevel REQUIRE
public static SnapshotSecurityLevel[] values()
for (SnapshotSecurityLevel c : SnapshotSecurityLevel.values()) System.out.println(c);
public static SnapshotSecurityLevel 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 null@Nullable public static @Nullable SnapshotSecurityLevel fromOrdinal(int ord)
ord
- Ordinal value.null
if ordinal out of range.
GridGain In-Memory Computing Platform : ver. 8.9.14 Release Date : November 5 2024