|
|||||||||
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.dsi.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. |
|
MAXCOUNT
The maximum count. |
|
MAXDOCSIZE
The maximum size (in words) of a document. |
|
OCCURRENCES
The number of occurrences in the collection. |
|
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
Whether the index is case sensitive. |
|
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're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, 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
public static final Index.PropertyKeys PAYLOADCLASS
public static final Index.PropertyKeys CODING
public static final Index.PropertyKeys INDEXCLASS
Index
class.
public static final Index.PropertyKeys FIELD
public static final Index.PropertyKeys SIZE
Method Detail |
---|
public static final 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
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |