public enum ComplianceLevel extends Enum<ComplianceLevel>
| Enum Constant and Description |
|---|
CORE
Core metadata elements required to identify a dataset, typically for catalogue purposes.
|
| Modifier and Type | Method and Description |
|---|---|
static ComplianceLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComplianceLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComplianceLevel CORE
Using the recommended optional elements in addition to the mandatory elements will increase inter-operability, allowing users to understand without ambiguity the geographic data and the related metadata provided by either the producer or the distributor.
public static ComplianceLevel[] values()
for (ComplianceLevel c : ComplianceLevel.values()) System.out.println(c);
public static ComplianceLevel 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 © 1994–2019 Open Geospatial Consortium. All rights reserved.