Package org.aksw.palmetto.evaluate
Enum CoherenceEvaluation.ProbSuppConfig.Type
- java.lang.Object
-
- java.lang.Enum<CoherenceEvaluation.ProbSuppConfig.Type>
-
- org.aksw.palmetto.evaluate.CoherenceEvaluation.ProbSuppConfig.Type
-
- All Implemented Interfaces:
Serializable,Comparable<CoherenceEvaluation.ProbSuppConfig.Type>
- Enclosing class:
- CoherenceEvaluation.ProbSuppConfig
public static enum CoherenceEvaluation.ProbSuppConfig.Type extends Enum<CoherenceEvaluation.ProbSuppConfig.Type>
-
-
Constructor Summary
Constructors Modifier Constructor Description privateType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CoherenceEvaluation.ProbSuppConfig.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static CoherenceEvaluation.ProbSuppConfig.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BD
public static final CoherenceEvaluation.ProbSuppConfig.Type BD
-
BP
public static final CoherenceEvaluation.ProbSuppConfig.Type BP
-
BS
public static final CoherenceEvaluation.ProbSuppConfig.Type BS
-
CW
public static final CoherenceEvaluation.ProbSuppConfig.Type CW
-
SW
public static final CoherenceEvaluation.ProbSuppConfig.Type SW
-
-
Method Detail
-
values
public static CoherenceEvaluation.ProbSuppConfig.Type[] 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 (CoherenceEvaluation.ProbSuppConfig.Type c : CoherenceEvaluation.ProbSuppConfig.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CoherenceEvaluation.ProbSuppConfig.Type 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 nameNullPointerException- if the argument is null
-
-