public static enum SDK.AccessMode extends java.lang.Enum<SDK.AccessMode>
| Enum Constant and Description |
|---|
CALLBACK
The entity will be accessed using callbacks.
|
DIRECT
The entity will be accessed using direct access methods.
|
SELECT
Multiplex multiple entities in a single thread
|
| Modifier and Type | Method and Description |
|---|---|
static SDK.AccessMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SDK.AccessMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SDK.AccessMode DIRECT
public static final SDK.AccessMode CALLBACK
public static final SDK.AccessMode SELECT
public static SDK.AccessMode[] values()
for (SDK.AccessMode c : SDK.AccessMode.values()) System.out.println(c);
public static SDK.AccessMode 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