Package org.geotools.stac.client
Enum STACConformance
- Object
- 
- Enum<STACConformance>
- 
- STACConformance
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<STACConformance>
 
 public enum STACConformance extends Enum<STACConformance> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description COLLECTIONSCONTEXTCOREFEATURESFIELDSFILTERITEM_SEARCHQUERYSORT
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanmatches(List<String> conformance)Checks if this STAC conformance class is a match, ignoring details about the version such as beta/RC/minor version changes (as long as it's a 1.0.x)static STACConformancevalueOf(String name)Returns the enum constant of this type with the specified name.static STACConformance[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
COREpublic static final STACConformance CORE 
 - 
COLLECTIONSpublic static final STACConformance COLLECTIONS 
 - 
FEATURESpublic static final STACConformance FEATURES 
 - 
ITEM_SEARCHpublic static final STACConformance ITEM_SEARCH 
 - 
CONTEXTpublic static final STACConformance CONTEXT 
 - 
FIELDSpublic static final STACConformance FIELDS 
 - 
SORTpublic static final STACConformance SORT 
 - 
QUERYpublic static final STACConformance QUERY 
 - 
FILTERpublic static final STACConformance FILTER 
 
- 
 - 
Method Detail- 
valuespublic static STACConformance[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (STACConformance c : STACConformance.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static STACConformance valueOf(String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
- 
 
-