public enum CategoryType extends Enum<CategoryType>
| Enum Constant and Description |
|---|
CRS
Coordinate Reference System
|
METADATA
Coordinate Metadata
|
OPERATION
Coordinate Operation
|
| Modifier and Type | Method and Description |
|---|---|
static CategoryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CategoryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CategoryType CRS
public static final CategoryType OPERATION
public static final CategoryType METADATA
public static CategoryType[] values()
for (CategoryType c : CategoryType.values()) System.out.println(c);
public static CategoryType 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 © 2021 National Geospatial-Intelligence Agency. All rights reserved.