Class EvaluationMethodType

    • Constructor Detail

      • EvaluationMethodType

        private EvaluationMethodType​(java.lang.String name)
        Constructs an enum with the given name. The new enum is automatically added to the list returned by values().
        Parameters:
        name - The enum name. This name must not be in use by an other enum of this type.
    • Method Detail

      • values

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

        public static EvaluationMethodType valueOf​(java.lang.String code)
        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.