- All Implemented Interfaces:
Serializable
,Comparable<EvaluationMethodType>
,ControlledVocabulary
@UML(identifier="DQ_EvaluationMethodTypeCode",
specification=ISO_19157)
public final class EvaluationMethodType
extends CodeList<EvaluationMethodType>
Type of method for evaluating an identified data quality measure.
- Since:
- 2.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.opengis.util.CodeList
CodeList.Filter
-
Field Summary
Modifier and TypeFieldDescriptionstatic final EvaluationMethodType
Method of evaluating the quality of a data set based on inspection of items within the data set, where reference data external to the data set being evaluated is required.static final EvaluationMethodType
Method of evaluating the quality of a data set based on inspection of items within the data set, where all data required is internal to the data set being evaluated.static final EvaluationMethodType
Method of evaluating the quality of a data set based on external knowledge. -
Method Summary
Modifier and TypeMethodDescriptionfamily()
Returns the list of codes of the same kind as this code list element.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.Methods inherited from class org.opengis.util.CodeList
compareTo, identifier, name, ordinal, readResolve, toString, valueOf, valueOf, valueOf, values
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.opengis.util.ControlledVocabulary
names
-
Field Details
-
DIRECT_INTERNAL
@UML(identifier="directInternal", obligation=CONDITIONAL, specification=ISO_19157) public static final EvaluationMethodType DIRECT_INTERNALMethod of evaluating the quality of a data set based on inspection of items within the data set, where all data required is internal to the data set being evaluated. -
DIRECT_EXTERNAL
@UML(identifier="directExternal", obligation=CONDITIONAL, specification=ISO_19157) public static final EvaluationMethodType DIRECT_EXTERNALMethod of evaluating the quality of a data set based on inspection of items within the data set, where reference data external to the data set being evaluated is required. -
INDIRECT
@UML(identifier="indirect", obligation=CONDITIONAL, specification=ISO_19157) public static final EvaluationMethodType INDIRECTMethod of evaluating the quality of a data set based on external knowledge.
-
-
Method Details
-
values
Returns the list ofEvaluationMethodType
s.- Returns:
- the list of codes declared in the current JVM.
-
family
Returns the list of codes of the same kind as this code list element. Invoking this method is equivalent to invokingvalues()
, except that this method can be invoked on an instance of the parentCodeList
class.- Specified by:
family
in interfaceControlledVocabulary
- Specified by:
family
in classCodeList<EvaluationMethodType>
- Returns:
- all code values for this code list.
-
valueOf
Returns the evaluation method type that matches the given string, or returns a new one if none match it. This methods returns the first instance (in declaration order) for which the name is equals, ignoring case, to the given name. If no existing instance is found, then a new one is created for the given name.- Parameters:
code
- the name of the code to fetch or to create.- Returns:
- a code matching the given name.
-