Class EvaluationMethodType

Object
CodeList<EvaluationMethodType>
EvaluationMethodType
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:
  • Field Details

  • Method Details

    • values

      public static EvaluationMethodType[] values()
      Returns the list of EvaluationMethodTypes.
      Returns:
      the list of codes declared in the current JVM.
    • family

      public EvaluationMethodType[] family()
      Returns the list of codes of the same kind than this code list element. Invoking this method is equivalent to invoking values(), except that this method can be invoked on an instance of the parent CodeList class.
      Specified by:
      family in interface ControlledVocabulary
      Specified by:
      family in class CodeList<EvaluationMethodType>
      Returns:
      all code values for this code list.
    • valueOf

      public static EvaluationMethodType valueOf(String code)
      Returns the evaluation method type that matches the given string, or returns a new one if none match it. More specifically, this methods returns the first instance for which name().equals(code) returns true. 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.