public enum BasicTypeKind extends Enum<BasicTypeKind>
Enum Constant and Description |
---|
BOOLEAN
Boolean type.
|
BYTE
Byte integer type.
|
DATE
Date type.
|
DATETIME
Date and time type.
|
DECIMAL
Decimal type.
|
DOUBLE
Double-precised floating point number type.
|
FLOAT
Single-precised floating point number type.
|
INT
32bit integer type.
|
LONG
64bit integer type.
|
SHORT
Short integer type.
|
TEXT
Text type.
|
Modifier and Type | Method and Description |
---|---|
static BasicTypeKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BasicTypeKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BasicTypeKind BYTE
public static final BasicTypeKind SHORT
public static final BasicTypeKind INT
public static final BasicTypeKind LONG
public static final BasicTypeKind DECIMAL
public static final BasicTypeKind FLOAT
public static final BasicTypeKind DOUBLE
public static final BasicTypeKind TEXT
public static final BasicTypeKind BOOLEAN
public static final BasicTypeKind DATE
public static final BasicTypeKind DATETIME
public static BasicTypeKind[] values()
for (BasicTypeKind c : BasicTypeKind.values()) System.out.println(c);
public static BasicTypeKind 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 © 2011–2019 Asakusa Framework Team. All rights reserved.