public enum Type extends Enum<Type>
Enum Constant and Description |
---|
CIRCULARSTRING |
COMPOUNDCURVE |
CURVEPOLYGON |
FULLGLOBE |
GEOMETRYCOLLECTION |
LINESTRING |
MULTILINESTRING |
MULTIPOINT |
MULTIPOLYGON |
POINT |
POLYGON |
Modifier and Type | Method and Description |
---|---|
static Type |
findType(int value) |
static Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Type POINT
public static final Type LINESTRING
public static final Type POLYGON
public static final Type MULTIPOINT
public static final Type MULTILINESTRING
public static final Type MULTIPOLYGON
public static final Type GEOMETRYCOLLECTION
public static final Type CIRCULARSTRING
public static final Type COMPOUNDCURVE
public static final Type CURVEPOLYGON
public static final Type FULLGLOBE
public static Type[] values()
for (Type c : Type.values()) System.out.println(c);
public static Type 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 Type findType(int value)
Copyright © 1996–2022 Geotools. All rights reserved.