static enum SequencedSharedMemoryActor.Scope extends java.lang.Enum<SequencedSharedMemoryActor.Scope>
Enum Constant and Description |
---|
EXPORTED
Exported scope (treated as global).
|
GLOBAL
Global scope.
|
IMPORTED
Imported scope (treated as global).
|
LOCAL
Local scope.
|
Modifier and Type | Method and Description |
---|---|
static SequencedSharedMemoryActor.Scope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SequencedSharedMemoryActor.Scope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SequencedSharedMemoryActor.Scope LOCAL
public static final SequencedSharedMemoryActor.Scope GLOBAL
public static final SequencedSharedMemoryActor.Scope IMPORTED
public static final SequencedSharedMemoryActor.Scope EXPORTED
public static SequencedSharedMemoryActor.Scope[] values()
for (SequencedSharedMemoryActor.Scope c : SequencedSharedMemoryActor.Scope.values()) System.out.println(c);
public static SequencedSharedMemoryActor.Scope 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