public enum ShapesFormat extends java.lang.Enum<ShapesFormat>
Enum Constant and Description |
---|
ShapesFormatCSV |
ShapesFormatDXF |
ShapesFormatGeoJSON |
ShapesFormatGeoPackage |
ShapesFormatKML |
ShapesFormatNone |
ShapesFormatSHP |
Modifier and Type | Method and Description |
---|---|
static ShapesFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ShapesFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShapesFormat ShapesFormatNone
public static final ShapesFormat ShapesFormatSHP
public static final ShapesFormat ShapesFormatKML
public static final ShapesFormat ShapesFormatDXF
public static final ShapesFormat ShapesFormatGeoJSON
public static final ShapesFormat ShapesFormatGeoPackage
public static final ShapesFormat ShapesFormatCSV
public static ShapesFormat[] values()
for (ShapesFormat c : ShapesFormat.values()) System.out.println(c);
public static ShapesFormat valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null