Package org.n52.shetland.rdf
Enum AbstractDatatype.DataType
- java.lang.Object
-
- java.lang.Enum<AbstractDatatype.DataType>
-
- org.n52.shetland.rdf.AbstractDatatype.DataType
-
- All Implemented Interfaces:
Serializable,Comparable<AbstractDatatype.DataType>
- Enclosing class:
- AbstractDatatype
@Deprecated public static enum AbstractDatatype.DataType extends Enum<AbstractDatatype.DataType>
Deprecated.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DateDeprecated.DateTimeDeprecated.GEO_JSONDeprecated.WKT_LITERALDeprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description StringgetType()Deprecated.static AbstractDatatype.DataTypevalueOf(String name)Deprecated.Returns the enum constant of this type with the specified name.static AbstractDatatype.DataType[]values()Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Date
public static final AbstractDatatype.DataType Date
Deprecated.
-
DateTime
public static final AbstractDatatype.DataType DateTime
Deprecated.
-
WKT_LITERAL
public static final AbstractDatatype.DataType WKT_LITERAL
Deprecated.
-
GEO_JSON
public static final AbstractDatatype.DataType GEO_JSON
Deprecated.
-
-
Method Detail
-
values
public static AbstractDatatype.DataType[] values()
Deprecated.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 (AbstractDatatype.DataType c : AbstractDatatype.DataType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractDatatype.DataType valueOf(String name)
Deprecated.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
-
getType
public String getType()
Deprecated.
-
-