Enum DefaultSQLDBTypeFactory.DefaultTypeCode
- java.lang.Object
-
- java.lang.Enum<DefaultSQLDBTypeFactory.DefaultTypeCode>
-
- it.unibz.inf.ontop.model.type.impl.DefaultSQLDBTypeFactory.DefaultTypeCode
-
- All Implemented Interfaces:
Serializable,Comparable<DefaultSQLDBTypeFactory.DefaultTypeCode>
- Enclosing class:
- DefaultSQLDBTypeFactory
protected static enum DefaultSQLDBTypeFactory.DefaultTypeCode extends Enum<DefaultSQLDBTypeFactory.DefaultTypeCode>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DefaultSQLDBTypeFactory.DefaultTypeCodevalueOf(String name)Returns the enum constant of this type with the specified name.static DefaultSQLDBTypeFactory.DefaultTypeCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STRING
public static final DefaultSQLDBTypeFactory.DefaultTypeCode STRING
-
HEXBINARY
public static final DefaultSQLDBTypeFactory.DefaultTypeCode HEXBINARY
-
LARGE_INTEGER
public static final DefaultSQLDBTypeFactory.DefaultTypeCode LARGE_INTEGER
-
DECIMAL
public static final DefaultSQLDBTypeFactory.DefaultTypeCode DECIMAL
-
DOUBLE
public static final DefaultSQLDBTypeFactory.DefaultTypeCode DOUBLE
-
BOOLEAN
public static final DefaultSQLDBTypeFactory.DefaultTypeCode BOOLEAN
-
DATE
public static final DefaultSQLDBTypeFactory.DefaultTypeCode DATE
-
TIME
public static final DefaultSQLDBTypeFactory.DefaultTypeCode TIME
-
DATETIMESTAMP
public static final DefaultSQLDBTypeFactory.DefaultTypeCode DATETIMESTAMP
-
GEOMETRY
public static final DefaultSQLDBTypeFactory.DefaultTypeCode GEOMETRY
-
GEOGRAPHY
public static final DefaultSQLDBTypeFactory.DefaultTypeCode GEOGRAPHY
-
-
Method Detail
-
values
public static DefaultSQLDBTypeFactory.DefaultTypeCode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DefaultSQLDBTypeFactory.DefaultTypeCode c : DefaultSQLDBTypeFactory.DefaultTypeCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DefaultSQLDBTypeFactory.DefaultTypeCode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-