public enum RDBJdbcType extends Enum<RDBJdbcType>
| Enum Constant and Description |
|---|
BIGINT |
BOOLEAN |
DATE |
FLOAT |
INTEGER |
TIME |
VARCHAR |
| Modifier and Type | Method and Description |
|---|---|
static RDBJdbcType |
fromCompositeAttributeDefinition(AttributeDefinition defn) |
static RDBJdbcType |
fromType(Class<?> type) |
int |
getCode() |
Class<?> |
getJavaType() |
String |
getName() |
static RDBJdbcType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RDBJdbcType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RDBJdbcType INTEGER
public static final RDBJdbcType FLOAT
public static final RDBJdbcType BIGINT
public static final RDBJdbcType BOOLEAN
public static final RDBJdbcType VARCHAR
public static final RDBJdbcType DATE
public static final RDBJdbcType TIME
public static RDBJdbcType[] values()
for (RDBJdbcType c : RDBJdbcType.values()) System.out.println(c);
public static RDBJdbcType 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 static RDBJdbcType fromType(Class<?> type)
public static RDBJdbcType fromCompositeAttributeDefinition(AttributeDefinition defn)
public int getCode()
public String getName()
public Class<?> getJavaType()
Copyright © 2022 Open Foris. All rights reserved.