public static enum OraclePropertyGraphBase.CacheStatus extends java.lang.Enum<OraclePropertyGraphBase.CacheStatus>
Enum Constant and Description |
---|
DISABLED
DISABLED means a user/client has explicitly disabled the built-in graph elements cache
|
ENABLED
ENABLED means a user/client has explicitly enabled the built-in graph elements cache
|
NOT_SET
NOT_SET means a user/client has not explicitly enabled/disabled the built-in graph elements cache
|
Modifier and Type | Method and Description |
---|---|
static OraclePropertyGraphBase.CacheStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OraclePropertyGraphBase.CacheStatus[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final OraclePropertyGraphBase.CacheStatus DISABLED
public static final OraclePropertyGraphBase.CacheStatus ENABLED
public static final OraclePropertyGraphBase.CacheStatus NOT_SET
public static OraclePropertyGraphBase.CacheStatus 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 nullpublic static OraclePropertyGraphBase.CacheStatus[] values()
for (OraclePropertyGraphBase.CacheStatus c : OraclePropertyGraphBase.CacheStatus.values()) System.out.println(c);