Package elki.outlier.distance
Enum HilOut.ScoreType
- java.lang.Object
-
- java.lang.Enum<HilOut.ScoreType>
-
- elki.outlier.distance.HilOut.ScoreType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<HilOut.ScoreType>
- Enclosing class:
- HilOut<O extends NumberVector>
public static enum HilOut.ScoreType extends java.lang.Enum<HilOut.ScoreType>
Type of output: all scores (upper bounds) or top n only- Author:
- Jonathan von Brünken
-
-
Constructor Summary
Constructors Modifier Constructor Description private
ScoreType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HilOut.ScoreType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static HilOut.ScoreType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL
public static final HilOut.ScoreType ALL
All scores
-
TOPN
public static final HilOut.ScoreType TOPN
Top n scores only
-
-
Method Detail
-
values
public static HilOut.ScoreType[] 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 (HilOut.ScoreType c : HilOut.ScoreType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HilOut.ScoreType valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-