it.unimi.dsi.mg4j.index
Class IndexProperties

java.lang.Object
  extended byit.unimi.dsi.mg4j.index.IndexProperties
Direct Known Subclasses:
SkipIndexProperties

public class IndexProperties
extends Object

This class provides symbolic names for properties of an index.

Since:
0.6
Author:
Paolo Boldi, Sebastiano Vigna
See Also:
IndexWriter, IndexReader, Index

Field Summary
static String COMPRESSIONFLAGS
          The compression flags.
static String DOCUMENTS
          The number of documents in the collection.
static String INDEXCLASS
          The name of the Index class.
static String ISCASESENSITIVE
          Whether the index is case sensitive.
static String MAXDOCPOS
          The maximum number of positions with a document record.
static String TERMS
          The number of terms in the collection.
 
Constructor Summary
protected IndexProperties()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

DOCUMENTS

public static final String DOCUMENTS
The number of documents in the collection.

See Also:
Constant Field Values

TERMS

public static final String TERMS
The number of terms in the collection.

See Also:
Constant Field Values

MAXDOCPOS

public static final String MAXDOCPOS
The maximum number of positions with a document record.

See Also:
Constant Field Values

ISCASESENSITIVE

public static final String ISCASESENSITIVE
Whether the index is case sensitive.

See Also:
Constant Field Values

COMPRESSIONFLAGS

public static final String COMPRESSIONFLAGS
The compression flags.

See Also:
Constant Field Values

INDEXCLASS

public static final String INDEXCLASS
The name of the Index class.

See Also:
Constant Field Values
Constructor Detail

IndexProperties

protected IndexProperties()