public static enum JnaUtils.NumpyMode extends java.lang.Enum<JnaUtils.NumpyMode>
| Enum Constant and Description |
|---|
GLOBAL_ON |
OFF |
THREAD_LOCAL_ON |
| Modifier and Type | Method and Description |
|---|---|
static JnaUtils.NumpyMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JnaUtils.NumpyMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JnaUtils.NumpyMode OFF
public static final JnaUtils.NumpyMode THREAD_LOCAL_ON
public static final JnaUtils.NumpyMode GLOBAL_ON
public static JnaUtils.NumpyMode[] values()
for (JnaUtils.NumpyMode c : JnaUtils.NumpyMode.values()) System.out.println(c);
public static JnaUtils.NumpyMode 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