|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Index.PropertyKeys>
it.unimi.di.mg4j.index.Index.PropertyKeys
public static enum Index.PropertyKeys
Symbolic names for properties of a Index
.
Enum Constant Summary | |
---|---|
BATCHES
The number of batches this index was (or should be) built from. |
|
CODING
The specification of a compressiong flag. |
|
DOCUMENTS
The number of documents in the collection. |
|
FIELD
The name of the field indexed by this index, if any. |
|
INDEXCLASS
The name of the Index class that should read this index. |
|
MAXCOUNT
The maximum count, or -1 is the maximum count is not known. |
|
MAXDOCSIZE
The maximum size (in words) of a document, or -1 if the maximum document size is not known. |
|
OCCURRENCES
The number of occurrences in the collection, or -1 if the number of occurrences is not known. |
|
PAYLOADCLASS
A class for the payloads of this index. |
|
POSTINGS
The number of postings (pairs term/document) in the collection. |
|
SIZE
The size in bits of the index. |
|
TERMPROCESSOR
The TermProcessor used to build this index. |
|
TERMS
The number of terms in the collection. |
Method Summary | |
---|---|
static Index.PropertyKeys |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Index.PropertyKeys[] |
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 Index.PropertyKeys DOCUMENTS
public static final Index.PropertyKeys TERMS
public static final Index.PropertyKeys OCCURRENCES
public static final Index.PropertyKeys POSTINGS
public static final Index.PropertyKeys BATCHES
public static final Index.PropertyKeys MAXCOUNT
public static final Index.PropertyKeys MAXDOCSIZE
public static final Index.PropertyKeys TERMPROCESSOR
TermProcessor
used to build this index.
public static final Index.PropertyKeys PAYLOADCLASS
public static final Index.PropertyKeys CODING
public static final Index.PropertyKeys INDEXCLASS
Index
class that should read this index.
public static final Index.PropertyKeys FIELD
public static final Index.PropertyKeys SIZE
Method Detail |
---|
public static Index.PropertyKeys[] values()
for (Index.PropertyKeys c : Index.PropertyKeys.values()) System.out.println(c);
public static Index.PropertyKeys 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 |