public static enum Srs.Type extends Enum<Srs.Type>
Enum Constant and Description |
---|
FLAT |
GEOGRAPHIC |
PROJECTED |
Modifier and Type | Method and Description |
---|---|
static Srs.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Srs.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Srs.Type GEOGRAPHIC
public static final Srs.Type PROJECTED
public static final Srs.Type FLAT
public static Srs.Type[] values()
for (Srs.Type c : Srs.Type.values()) System.out.println(c);
public static Srs.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 nullCopyright © 1996–2022 Geotools. All rights reserved.