@Namespace(value="plasma") public static enum plasma.ObjectState extends Enum<plasma.ObjectState>
| Enum Constant and Description |
|---|
PLASMA_CREATED
Object was created but not sealed in the local Plasma Store.
|
PLASMA_EVICTED
Object is evicted to external store.
|
PLASMA_SEALED
Object is sealed and stored in the local Plasma Store.
|
| Modifier and Type | Field and Description |
|---|---|
int |
value |
| Modifier and Type | Method and Description |
|---|---|
plasma.ObjectState |
intern() |
String |
toString() |
static plasma.ObjectState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static plasma.ObjectState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final plasma.ObjectState PLASMA_CREATED
public static final plasma.ObjectState PLASMA_SEALED
public static final plasma.ObjectState PLASMA_EVICTED
public static plasma.ObjectState[] values()
for (plasma.ObjectState c : plasma.ObjectState.values()) System.out.println(c);
public static plasma.ObjectState 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 nullpublic plasma.ObjectState intern()
public String toString()
toString in class Enum<plasma.ObjectState>Copyright © 2021. All rights reserved.