public enum KeywordCase extends Enum<KeywordCase>
Upper case | Camel case |
---|---|
TIMEEXTENT | TimeExtent |
ANGLEUNIT | AngleUnit |
BASEGEODCRS | BaseGeodCRS |
DERIVINGCONVERSION | DerivingConversion |
ENGINEERINGDATUM | EngineeringDatum |
KEYWORD
is equivalent to
keyword
is equivalent to KeyWord
and to kEYwORd
.Defined in the sis-metadata
module
Enum Constant and Description |
---|
CAMEL_CASE
WKT formatting uses CamelCase keywords.
|
DEFAULT
Keywords case is determined by the WKT convention.
|
LOWER_CASE
WKT formatting uses lower case keywords.
|
UPPER_CASE
WKT formatting uses upper case keywords.
|
Modifier and Type | Method and Description |
---|---|
static KeywordCase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeywordCase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeywordCase LOWER_CASE
public static final KeywordCase UPPER_CASE
public static final KeywordCase CAMEL_CASE
"TimeExtent"
, "AngleUnit"
.public static final KeywordCase DEFAULT
public static KeywordCase[] values()
for (KeywordCase c : KeywordCase.values()) System.out.println(c);
public static KeywordCase 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–2015 The Apache Software Foundation. All rights reserved.