public enum ComplianceLevel extends Enum<ComplianceLevel>
Enum Constant and Description |
---|
CORE
Core metadata elements required to identify a dataset, typically for catalogue purposes.
|
DATA_PROVIDER
Indicates a required element of the data provider profile.
|
DISPLAY_OBJECT
Indicates a required element of the display object profile.
|
EDITABLE_DISPLAY_OBJECT
Indicates a required element of the editable display object profile.
|
FEATURE
Indicates a required element of the feature profile.
|
FEATURE_DISPLAY_OBJECT
Indicates a required element of the feature display object profile.
|
SPATIAL
Indicates a required element of the spatial profile.
|
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
public static final ComplianceLevel SPATIAL
public static final ComplianceLevel FEATURE
public static final ComplianceLevel DATA_PROVIDER
public static final ComplianceLevel DISPLAY_OBJECT
public static final ComplianceLevel EDITABLE_DISPLAY_OBJECT
public static final ComplianceLevel FEATURE_DISPLAY_OBJECT
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 © 1996–2019 Geotools. All rights reserved.