public static enum IndexParam.MetricType extends java.lang.Enum<IndexParam.MetricType>
Enum Constant and Description |
---|
COSINE |
HAMMING |
INVALID |
IP |
JACCARD |
L2 |
Modifier and Type | Method and Description |
---|---|
static IndexParam.MetricType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IndexParam.MetricType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexParam.MetricType INVALID
public static final IndexParam.MetricType L2
public static final IndexParam.MetricType IP
public static final IndexParam.MetricType COSINE
public static final IndexParam.MetricType HAMMING
public static final IndexParam.MetricType JACCARD
public static IndexParam.MetricType[] values()
for (IndexParam.MetricType c : IndexParam.MetricType.values()) System.out.println(c);
public static IndexParam.MetricType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null