public static enum Tables.BasicType extends Enum<Tables.BasicType>
Enum Constant and Description |
---|
T_BOOLEAN |
T_BYTE |
T_CHAR |
T_CLASS |
T_DOUBLE |
T_FLOAT |
T_INT |
T_LONG |
T_SHORT |
Modifier and Type | Method and Description |
---|---|
String |
printval() |
static Tables.BasicType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Tables.BasicType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Tables.BasicType T_INT
public static final Tables.BasicType T_LONG
public static final Tables.BasicType T_FLOAT
public static final Tables.BasicType T_DOUBLE
public static final Tables.BasicType T_CLASS
public static final Tables.BasicType T_BOOLEAN
public static final Tables.BasicType T_CHAR
public static final Tables.BasicType T_BYTE
public static final Tables.BasicType T_SHORT
public static Tables.BasicType[] values()
for (Tables.BasicType c : Tables.BasicType.values()) System.out.println(c);
public static Tables.BasicType 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 printval()
Copyright © 2021. All Rights Reserved.