|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ApproxRangeQueryOperation.LocalSearchType>
messif.operations.query.ApproxRangeQueryOperation.LocalSearchType
public static enum ApproxRangeQueryOperation.LocalSearchType
Type of the local approximation parameter: PERCENTAGE, ABS_OBJ_COUNT, ABS_DC_COUNT. It can be view as a type of stop condition for early termination strategy of approximation.
Enum Constant Summary | |
---|---|
ABS_DC_COUNT
Stop after the specific number of evaluations of distance functions. |
|
ABS_OBJ_COUNT
Stop after inspecting the specific number of objects. |
|
PERCENTAGE
Stop after inspecting given percentage of data. |
Method Summary | |
---|---|
static ApproxRangeQueryOperation.LocalSearchType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ApproxRangeQueryOperation.LocalSearchType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ApproxRangeQueryOperation.LocalSearchType PERCENTAGE
ApproxRangeQueryOperation.localSearchParam
holds the value between 0-100.
public static final ApproxRangeQueryOperation.LocalSearchType ABS_OBJ_COUNT
ApproxRangeQueryOperation.localSearchParam
is the number of objects.
public static final ApproxRangeQueryOperation.LocalSearchType ABS_DC_COUNT
ApproxRangeQueryOperation.localSearchParam
is the threshold on the number of distance computations.
Method Detail |
---|
public static ApproxRangeQueryOperation.LocalSearchType[] values()
for (ApproxRangeQueryOperation.LocalSearchType c : ApproxRangeQueryOperation.LocalSearchType.values()) System.out.println(c);
public static ApproxRangeQueryOperation.LocalSearchType 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |