public enum FeaturesConformance extends Enum<FeaturesConformance>
Modifier and Type | Method and Description |
---|---|
boolean |
matches(List<String> conformance)
Checks if this Features conformance class has an exact match
|
static FeaturesConformance |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FeaturesConformance[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FeaturesConformance CORE
public static final FeaturesConformance GEOJSON
public static FeaturesConformance[] values()
for (FeaturesConformance c : FeaturesConformance.values()) System.out.println(c);
public static FeaturesConformance 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–2023 Geotools. All rights reserved.