|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Query.OutputType>
it.unimi.di.mg4j.query.Query.OutputType
public static enum Query.OutputType
Enum Constant Summary | |
---|---|
LONG
Display document pointers and not intervals (requires an index with positions). |
|
SHORT
Display document pointers, but not intervals. |
|
SNIPPET
Display document pointers and snippets (requires an index with positions and a collection). |
|
TIME
Display just timings. |
|
TREC
Display results in TREC format. |
Method Summary | |
---|---|
static Query.OutputType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Query.OutputType[] |
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 Query.OutputType TIME
public static final Query.OutputType SHORT
public static final Query.OutputType LONG
public static final Query.OutputType SNIPPET
public static final Query.OutputType TREC
Method Detail |
---|
public static Query.OutputType[] values()
for (Query.OutputType c : Query.OutputType.values()) System.out.println(c);
public static Query.OutputType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |