public enum ViewColumnType extends Enum<ViewColumnType>
Enum Constant and Description |
---|
BIT
Boolean value.
|
BLOB
Binary large object.
|
DATE
Date.
|
DATE_WITH_TIME_ZONE
Date with time zone.
|
DECIMAL
Numeric value with fractional part and fixed decimal point.
|
INT
Integer value.
|
LOGIC
Logical condition.
|
REAL
Numeric value with fractional part.
|
TEXT
Text value.
|
UNDEFINED
Undefined value.
|
Modifier and Type | Method and Description |
---|---|
abstract String |
getCelestaType()
Celesta type.
|
abstract Class<?> |
getJavaClass()
Returns Java type.
|
static ViewColumnType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ViewColumnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ViewColumnType LOGIC
public static final ViewColumnType REAL
public static final ViewColumnType DECIMAL
public static final ViewColumnType INT
public static final ViewColumnType TEXT
public static final ViewColumnType DATE
public static final ViewColumnType DATE_WITH_TIME_ZONE
public static final ViewColumnType BIT
public static final ViewColumnType BLOB
public static final ViewColumnType UNDEFINED
public static ViewColumnType[] values()
for (ViewColumnType c : ViewColumnType.values()) System.out.println(c);
public static ViewColumnType 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 abstract String getCelestaType()
public abstract Class<?> getJavaClass()
Copyright © 2022 CURS. All rights reserved.