Enum TMAttributeType
- java.lang.Object
-
- java.lang.Enum<TMAttributeType>
-
- nl.b3p.tailormap.api.persistence.json.TMAttributeType
-
- All Implemented Interfaces:
Serializable,Comparable<TMAttributeType>
@Generated("org.openapitools.codegen.languages.SpringCodegen") public enum TMAttributeType extends Enum<TMAttributeType>data type. eg \"date\" or \"string\". see also: nl.tailormap.api.persistence.TMAttributeDescriptor
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOOLEANDATEDOUBLEGEOMETRYGEOMETRY_COLLECTIONINTEGERLINESTRINGMULTILINESTRINGMULTIPOINTMULTIPOLYGONOBJECTPOINTPOLYGONSTRINGTIMESTAMP
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TMAttributeTypefromValue(String value)StringgetValue()StringtoString()static TMAttributeTypevalueOf(String name)Returns the enum constant of this type with the specified name.static TMAttributeType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GEOMETRY
public static final TMAttributeType GEOMETRY
-
GEOMETRY_COLLECTION
public static final TMAttributeType GEOMETRY_COLLECTION
-
MULTIPOLYGON
public static final TMAttributeType MULTIPOLYGON
-
POLYGON
public static final TMAttributeType POLYGON
-
MULTILINESTRING
public static final TMAttributeType MULTILINESTRING
-
LINESTRING
public static final TMAttributeType LINESTRING
-
MULTIPOINT
public static final TMAttributeType MULTIPOINT
-
POINT
public static final TMAttributeType POINT
-
BOOLEAN
public static final TMAttributeType BOOLEAN
-
INTEGER
public static final TMAttributeType INTEGER
-
STRING
public static final TMAttributeType STRING
-
DOUBLE
public static final TMAttributeType DOUBLE
-
DATE
public static final TMAttributeType DATE
-
TIMESTAMP
public static final TMAttributeType TIMESTAMP
-
OBJECT
public static final TMAttributeType OBJECT
-
-
Method Detail
-
values
public static TMAttributeType[] 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 (TMAttributeType c : TMAttributeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TMAttributeType 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<TMAttributeType>
-
fromValue
public static TMAttributeType fromValue(String value)
-
-