Package io.prestosql.geospatial.serde
Enum GeometrySerializationType
- java.lang.Object
-
- java.lang.Enum<GeometrySerializationType>
-
- io.prestosql.geospatial.serde.GeometrySerializationType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<GeometrySerializationType>
public enum GeometrySerializationType extends java.lang.Enum<GeometrySerializationType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ENVELOPEGEOMETRY_COLLECTIONLINE_STRINGMULTI_LINE_STRINGMULTI_POINTMULTI_POLYGONPOINTPOLYGON
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intcode()GeometryTypegeometryType()static GeometrySerializationTypegetForCode(int code)static GeometrySerializationTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static GeometrySerializationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
POINT
public static final GeometrySerializationType POINT
-
MULTI_POINT
public static final GeometrySerializationType MULTI_POINT
-
LINE_STRING
public static final GeometrySerializationType LINE_STRING
-
MULTI_LINE_STRING
public static final GeometrySerializationType MULTI_LINE_STRING
-
POLYGON
public static final GeometrySerializationType POLYGON
-
MULTI_POLYGON
public static final GeometrySerializationType MULTI_POLYGON
-
GEOMETRY_COLLECTION
public static final GeometrySerializationType GEOMETRY_COLLECTION
-
ENVELOPE
public static final GeometrySerializationType ENVELOPE
-
-
Method Detail
-
values
public static GeometrySerializationType[] 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 (GeometrySerializationType c : GeometrySerializationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GeometrySerializationType valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
code
public int code()
-
geometryType
public GeometryType geometryType()
-
getForCode
public static GeometrySerializationType getForCode(int code)
-
-