public enum BuiltInType extends Enum<BuiltInType>
| Enum Constant and Description |
|---|
BOOLEAN |
BYTE |
CHARACTER |
DATE |
DOUBLE |
FAULT |
FLOAT |
INTEGER |
LONG |
OBJECT |
SHORT |
STRING |
U_BYTE |
U_INTEGER |
U_LONG |
U_SHORT |
VOID |
| Modifier and Type | Method and Description |
|---|---|
String |
getCode() |
static BuiltInType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BuiltInType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuiltInType BOOLEAN
public static final BuiltInType BYTE
public static final BuiltInType U_BYTE
public static final BuiltInType SHORT
public static final BuiltInType U_SHORT
public static final BuiltInType INTEGER
public static final BuiltInType U_INTEGER
public static final BuiltInType LONG
public static final BuiltInType U_LONG
public static final BuiltInType FLOAT
public static final BuiltInType DOUBLE
public static final BuiltInType CHARACTER
public static final BuiltInType STRING
public static final BuiltInType DATE
public static final BuiltInType VOID
public static final BuiltInType FAULT
public static final BuiltInType OBJECT
public static BuiltInType[] values()
for (BuiltInType c : BuiltInType.values()) System.out.println(c);
public static BuiltInType 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 nullpublic String getCode()
Copyright © 2015. All Rights Reserved.