public enum MS_DataTypes extends Enum<MS_DataTypes>
| Enum Constant and Description |
|---|
MS_DataTypes_CHAR
The value of this constant is 1
|
MS_DataTypes_CHAR_STRING
The value of this constant is 12
|
MS_DataTypes_DOUBLE
The value of this constant is 11
|
MS_DataTypes_FLOAT
The value of this constant is 10
|
MS_DataTypes_LONG
The value of this constant is 8
|
MS_DataTypes_NULL
The value of this constant is 0
|
MS_DataTypes_ONOFF
The value of this constant is 4
|
MS_DataTypes_SHORT
The value of this constant is 6
|
MS_DataTypes_TRUEFALSE
The value of this constant is 2
|
MS_DataTypes_UCHAR
The value of this constant is 5
|
MS_DataTypes_ULONG
The value of this constant is 9
|
MS_DataTypes_USHORT
The value of this constant is 7
|
MS_DataTypes_WCHAR_STRING
The value of this constant is 13
|
MS_DataTypes_YESNO
The value of this constant is 3
|
| Modifier and Type | Method and Description |
|---|---|
static MS_DataTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MS_DataTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MS_DataTypes MS_DataTypes_NULL
The value of this constant is 0
public static final MS_DataTypes MS_DataTypes_CHAR
The value of this constant is 1
public static final MS_DataTypes MS_DataTypes_TRUEFALSE
The value of this constant is 2
public static final MS_DataTypes MS_DataTypes_YESNO
The value of this constant is 3
public static final MS_DataTypes MS_DataTypes_ONOFF
The value of this constant is 4
public static final MS_DataTypes MS_DataTypes_UCHAR
The value of this constant is 5
public static final MS_DataTypes MS_DataTypes_SHORT
The value of this constant is 6
public static final MS_DataTypes MS_DataTypes_USHORT
The value of this constant is 7
public static final MS_DataTypes MS_DataTypes_LONG
The value of this constant is 8
public static final MS_DataTypes MS_DataTypes_ULONG
The value of this constant is 9
public static final MS_DataTypes MS_DataTypes_FLOAT
The value of this constant is 10
public static final MS_DataTypes MS_DataTypes_DOUBLE
The value of this constant is 11
public static final MS_DataTypes MS_DataTypes_CHAR_STRING
The value of this constant is 12
public static final MS_DataTypes MS_DataTypes_WCHAR_STRING
The value of this constant is 13
public static MS_DataTypes[] values()
for (MS_DataTypes c : MS_DataTypes.values()) System.out.println(c);
public static MS_DataTypes 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 © 2017. All rights reserved.