public enum KeywordStyle extends Enum<KeywordStyle>
GeodeticCRS, etc).
Defined in the sis-metadata module
| Enum Constant and Description |
|---|
DEFAULT
Keywords style is determined by the WKT convention.
|
LONG
Long keywords.
|
SHORT
Short keywords.
|
| Modifier and Type | Method and Description |
|---|---|
static KeywordStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeywordStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeywordStyle SHORT
"GeodCRS", "VertCRS", "Unit".
public static final KeywordStyle LONG
"GeodeticCRS", "VerticalCRS", "AngleUnit".
public static final KeywordStyle DEFAULT
Convention.WKT2: "GeodCRS", "VertCRS", "AngleUnit"
(keywords matching the ISO 19162 recommendations).Convention.WKT2_SIMPLIFIED: "GeodeticCRS", "VerticalCRS", "Unit"
(keywords matching the class or interface names).public static KeywordStyle[] values()
for (KeywordStyle c : KeywordStyle.values()) System.out.println(c);
public static KeywordStyle 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 © 2010–2017 The Apache Software Foundation. All rights reserved.