public enum EOS_EAttributeType extends java.lang.Enum<EOS_EAttributeType> implements com.sun.jna.NativeMapped
| Enum Constant and Description |
|---|
EOS_AT_BOOLEAN
Boolean value (true/false)
|
EOS_AT_DOUBLE
Double/floating point precision
|
EOS_AT_INT64
64 bit integers
|
EOS_AT_STRING
UTF8 Strings
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
fromNative(java.lang.Object nativeValue,
com.sun.jna.FromNativeContext context) |
java.lang.Class<?> |
nativeType() |
java.lang.Object |
toNative() |
static EOS_EAttributeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EOS_EAttributeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EOS_EAttributeType EOS_AT_BOOLEAN
public static final EOS_EAttributeType EOS_AT_INT64
public static final EOS_EAttributeType EOS_AT_DOUBLE
public static final EOS_EAttributeType EOS_AT_STRING
public static EOS_EAttributeType[] values()
for (EOS_EAttributeType c : EOS_EAttributeType.values()) System.out.println(c);
public static EOS_EAttributeType 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 nullpublic java.lang.Object fromNative(java.lang.Object nativeValue,
com.sun.jna.FromNativeContext context)
fromNative in interface com.sun.jna.NativeMappedpublic java.lang.Object toNative()
toNative in interface com.sun.jna.NativeMappedpublic java.lang.Class<?> nativeType()
nativeType in interface com.sun.jna.NativeMapped