Package org.opengis.metadata.quality
Class EvaluationMethodType
- All Implemented Interfaces:
Serializable
,Comparable<EvaluationMethodType>
@UML(identifier="DQ_EvaluationMethodTypeCode",
specification=ISO_19115)
public final class EvaluationMethodType
extends CodeList<EvaluationMethodType>
Type of method for evaluating an identified data quality measure.
- Since:
- 2.0
- Version:
- 3.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.opengis.util.CodeList
CodeList.Filter
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final EvaluationMethodType
Method of evaluating the quality of a dataset based on inspection of items within the dataset, where reference data external to the dataset being evaluated is required.static final EvaluationMethodType
Method of evaluating the quality of a dataset based on inspection of items within the dataset, where all data required is internal to the dataset being evaluated.static final EvaluationMethodType
Method of evaluating the quality of a dataset based on external knowledge.private static final long
Serial number for compatibility with different versions.private static final List
<EvaluationMethodType> List of all enumerations of this type. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
EvaluationMethodType
(String name) Constructs an enum with the given name. -
Method Summary
Modifier and TypeMethodDescriptionfamily()
Returns the list of enumerations of the same kind than this enum.static EvaluationMethodType
Returns the evaluation method type that matches the given string, or returns a new one if none match it.static EvaluationMethodType[]
values()
Returns the list ofEvaluationMethodType
s.
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDSerial number for compatibility with different versions.- See Also:
-
VALUES
List of all enumerations of this type. Must be declared before any enum declaration. -
DIRECT_INTERNAL
@UML(identifier="directInternal", obligation=CONDITIONAL, specification=ISO_19115) public static final EvaluationMethodType DIRECT_INTERNALMethod of evaluating the quality of a dataset based on inspection of items within the dataset, where all data required is internal to the dataset being evaluated. -
DIRECT_EXTERNAL
@UML(identifier="directExternal", obligation=CONDITIONAL, specification=ISO_19115) public static final EvaluationMethodType DIRECT_EXTERNALMethod of evaluating the quality of a dataset based on inspection of items within the dataset, where reference data external to the dataset being evaluated is required. -
INDIRECT
@UML(identifier="indirect", obligation=CONDITIONAL, specification=ISO_19115) public static final EvaluationMethodType INDIRECTMethod of evaluating the quality of a dataset based on external knowledge.
-
-
Constructor Details
-
EvaluationMethodType
Constructs an enum with the given name. The new enum is automatically added to the list returned byvalues()
.- Parameters:
name
- The enum name. This name must not be in use by an other enum of this type.
-
-
Method Details
-
values
Returns the list ofEvaluationMethodType
s.- Returns:
- The list of codes declared in the current JVM.
-
family
Returns the list of enumerations of the same kind than this enum.- Specified by:
family
in classCodeList<EvaluationMethodType>
- Returns:
- The codes of the same kind than this code.
-
valueOf
Returns the evaluation method type that matches the given string, or returns a new one if none match it.- Parameters:
code
- The name of the code to fetch or to create.- Returns:
- A code matching the given name.
-