|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.lucene.document.AbstractField org.apache.lucene.document.Field
public final class Field
A field is a section of a Document. Each field has two parts, a name and a value. Values may be free text, provided as a String or as a Reader, or they may be atomic keywords, which are not further processed. Such keywords may be used to represent dates, urls, etc. Fields are optionally stored in the index, so that they may be returned with hits on the document.
Nested Class Summary | |
---|---|
static class |
Field.Index
Specifies whether and how a field should be indexed. |
static class |
Field.Store
Specifies whether and how a field should be stored. |
static class |
Field.TermVector
Specifies whether and how a field should have term vectors. |
Field Summary |
---|
Fields inherited from class org.apache.lucene.document.AbstractField |
---|
binaryLength, binaryOffset, boost, fieldsData, indexOptions, isBinary, isIndexed, isStored, isTokenized, lazy, name, omitNorms, storeOffsetWithTermVector, storePositionWithTermVector, storeTermVector, tokenStream |
Constructor Summary | |
---|---|
Field(String name,
boolean internName,
String value,
Field.Store store,
Field.Index index,
Field.TermVector termVector)
Create a field by specifying its name, value and how it will be saved in the index. |
|
Field(String name,
byte[] value)
Create a stored field with binary value. |
|
Field(String name,
byte[] value,
Field.Store store)
Deprecated. Use instead |
|
Field(String name,
byte[] value,
int offset,
int length)
Create a stored field with binary value. |
|
Field(String name,
byte[] value,
int offset,
int length,
Field.Store store)
Deprecated. Use instead |
|
Field(String name,
Reader reader)
Create a tokenized and indexed field that is not stored. |
|
Field(String name,
Reader reader,
Field.TermVector termVector)
Create a tokenized and indexed field that is not stored, optionally with storing term vectors. |
|
Field(String name,
String value,
Field.Store store,
Field.Index index)
Create a field by specifying its name, value and how it will be saved in the index. |
|
Field(String name,
String value,
Field.Store store,
Field.Index index,
Field.TermVector termVector)
Create a field by specifying its name, value and how it will be saved in the index. |
|
Field(String name,
TokenStream tokenStream)
Create a tokenized and indexed field that is not stored. |
|
Field(String name,
TokenStream tokenStream,
Field.TermVector termVector)
Create a tokenized and indexed field that is not stored, optionally with storing term vectors. |
Method Summary | |
---|---|
Reader |
readerValue()
The value of the field as a Reader, or null. |
void |
setTokenStream(TokenStream tokenStream)
Expert: sets the token stream to be used for indexing and causes isIndexed() and isTokenized() to return true. |
void |
setValue(byte[] value)
Expert: change the value of this field. |
void |
setValue(byte[] value,
int offset,
int length)
Expert: change the value of this field. |
void |
setValue(Reader value)
Expert: change the value of this field. |
void |
setValue(String value)
Expert: change the value of this field. |
String |
stringValue()
The value of the field as a String, or null. |
TokenStream |
tokenStreamValue()
The TokesStream for this field to be used when indexing, or null. |
Methods inherited from class org.apache.lucene.document.AbstractField |
---|
getBinaryLength, getBinaryOffset, getBinaryValue, getBinaryValue, getBoost, getIndexOptions, getOmitNorms, getOmitTermFreqAndPositions, isBinary, isIndexed, isLazy, isStored, isStoreOffsetWithTermVector, isStorePositionWithTermVector, isTermVectorStored, isTokenized, name, setBoost, setIndexOptions, setOmitNorms, setOmitTermFreqAndPositions, setStoreTermVector, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface org.apache.lucene.document.Fieldable |
---|
getBinaryLength, getBinaryOffset, getBinaryValue, getBinaryValue, getBoost, getIndexOptions, getOmitNorms, isBinary, isIndexed, isLazy, isStored, isStoreOffsetWithTermVector, isStorePositionWithTermVector, isTermVectorStored, isTokenized, name, setBoost, setIndexOptions, setOmitNorms |
Constructor Detail |
---|
public Field(String name, String value, Field.Store store, Field.Index index)
name
- The name of the fieldvalue
- The string to processstore
- Whether value
should be stored in the indexindex
- Whether the field should be indexed, and if so, if it should
be tokenized before indexing
NullPointerException
- if name or value is null
IllegalArgumentException
- if the field is neither stored nor indexedpublic Field(String name, String value, Field.Store store, Field.Index index, Field.TermVector termVector)
name
- The name of the fieldvalue
- The string to processstore
- Whether value
should be stored in the indexindex
- Whether the field should be indexed, and if so, if it should
be tokenized before indexingtermVector
- Whether term vector should be stored
NullPointerException
- if name or value is null
IllegalArgumentException
- in any of the following situations:
TermVector.YES
public Field(String name, boolean internName, String value, Field.Store store, Field.Index index, Field.TermVector termVector)
name
- The name of the fieldinternName
- Whether to .intern() name or notvalue
- The string to processstore
- Whether value
should be stored in the indexindex
- Whether the field should be indexed, and if so, if it should
be tokenized before indexingtermVector
- Whether term vector should be stored
NullPointerException
- if name or value is null
IllegalArgumentException
- in any of the following situations:
TermVector.YES
public Field(String name, Reader reader)
IndexWriter.addDocument(Document)
has been called.
name
- The name of the fieldreader
- The reader with the content
NullPointerException
- if name or reader is null
public Field(String name, Reader reader, Field.TermVector termVector)
IndexWriter.addDocument(Document)
has been called.
name
- The name of the fieldreader
- The reader with the contenttermVector
- Whether term vector should be stored
NullPointerException
- if name or reader is null
public Field(String name, TokenStream tokenStream)
IndexWriter.addDocument(Document)
has been called.
name
- The name of the fieldtokenStream
- The TokenStream with the content
NullPointerException
- if name or tokenStream is null
public Field(String name, TokenStream tokenStream, Field.TermVector termVector)
IndexWriter.addDocument(Document)
has been called.
name
- The name of the fieldtokenStream
- The TokenStream with the contenttermVector
- Whether term vector should be stored
NullPointerException
- if name or tokenStream is null
@Deprecated public Field(String name, byte[] value, Field.Store store)
instead
name
- The name of the fieldvalue
- The binary valuestore
- Must be Store.YES
IllegalArgumentException
- if store is Store.NO
public Field(String name, byte[] value)
name
- The name of the fieldvalue
- The binary value@Deprecated public Field(String name, byte[] value, int offset, int length, Field.Store store)
instead
name
- The name of the fieldvalue
- The binary valueoffset
- Starting offset in value where this Field's bytes arelength
- Number of bytes to use for this Field, starting at offsetstore
- How value
should be stored (compressed or not)
IllegalArgumentException
- if store is Store.NO
public Field(String name, byte[] value, int offset, int length)
name
- The name of the fieldvalue
- The binary valueoffset
- Starting offset in value where this Field's bytes arelength
- Number of bytes to use for this Field, starting at offsetMethod Detail |
---|
public String stringValue()
stringValue
in interface Fieldable
public Reader readerValue()
readerValue
in interface Fieldable
Fieldable.stringValue()
public TokenStream tokenStreamValue()
tokenStreamValue
in interface Fieldable
Fieldable.stringValue()
public void setValue(String value)
Expert: change the value of this field. This can
be used during indexing to re-use a single Field
instance to improve indexing speed by avoiding GC cost
of new'ing and reclaiming Field instances. Typically
a single Document
instance is re-used as
well. This helps most on small documents.
Each Field instance should only be used once
within a single Document
instance. See ImproveIndexingSpeed
for details.
public void setValue(Reader value)
public void setValue(byte[] value)
public void setValue(byte[] value, int offset, int length)
public void setTokenStream(TokenStream tokenStream)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |