Enum ExpressionProblem.ResourceTerminalType
- java.lang.Object
-
- java.lang.Enum<ExpressionProblem.ResourceTerminalType>
-
- org.aksw.limes.core.ml.algorithm.eagle.core.ExpressionProblem.ResourceTerminalType
-
- All Implemented Interfaces:
Serializable,Comparable<ExpressionProblem.ResourceTerminalType>
- Enclosing class:
- ExpressionProblem
public static enum ExpressionProblem.ResourceTerminalType extends Enum<ExpressionProblem.ResourceTerminalType>
TerminalType help to differentiate Children subtypes.- Author:
- Klaus Lyko
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATEPROPPAIRGOBALTHRESHOLDNUMBERPROPPAIRNUMBERTHRESHOLDPOINTSETPROPPAIRPREPROCESSSTRINGPROPPAIRTHRESHOLD
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intintValue()static ExpressionProblem.ResourceTerminalTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ExpressionProblem.ResourceTerminalType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STRINGPROPPAIR
public static final ExpressionProblem.ResourceTerminalType STRINGPROPPAIR
-
NUMBERPROPPAIR
public static final ExpressionProblem.ResourceTerminalType NUMBERPROPPAIR
-
THRESHOLD
public static final ExpressionProblem.ResourceTerminalType THRESHOLD
-
DATEPROPPAIR
public static final ExpressionProblem.ResourceTerminalType DATEPROPPAIR
-
POINTSETPROPPAIR
public static final ExpressionProblem.ResourceTerminalType POINTSETPROPPAIR
-
NUMBERTHRESHOLD
public static final ExpressionProblem.ResourceTerminalType NUMBERTHRESHOLD
-
GOBALTHRESHOLD
public static final ExpressionProblem.ResourceTerminalType GOBALTHRESHOLD
-
PREPROCESS
public static final ExpressionProblem.ResourceTerminalType PREPROCESS
-
-
Method Detail
-
values
public static ExpressionProblem.ResourceTerminalType[] 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 (ExpressionProblem.ResourceTerminalType c : ExpressionProblem.ResourceTerminalType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExpressionProblem.ResourceTerminalType 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
-
intValue
public int intValue()
-
-