public static enum StateObject.StateObjectLocation extends Enum<StateObject.StateObjectLocation>
| Enum Constant and Description |
|---|
LOCAL_DISK |
LOCAL_MEMORY |
REMOTE |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static StateObject.StateObjectLocation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StateObject.StateObjectLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StateObject.StateObjectLocation LOCAL_MEMORY
public static final StateObject.StateObjectLocation LOCAL_DISK
public static final StateObject.StateObjectLocation REMOTE
public static final StateObject.StateObjectLocation UNKNOWN
public static StateObject.StateObjectLocation[] values()
for (StateObject.StateObjectLocation c : StateObject.StateObjectLocation.values()) System.out.println(c);
public static StateObject.StateObjectLocation 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 © 2014–2025 The Apache Software Foundation. All rights reserved.