|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.lucene.document.AbstractField
public abstract class AbstractField
| Field Summary | |
|---|---|
protected float |
boost
|
protected Object |
fieldsData
|
protected boolean |
isBinary
|
protected boolean |
isCompressed
|
protected boolean |
isIndexed
|
protected boolean |
isStored
|
protected boolean |
isTokenized
|
protected boolean |
lazy
|
protected String |
name
|
protected boolean |
omitNorms
|
protected boolean |
storeOffsetWithTermVector
|
protected boolean |
storePositionWithTermVector
|
protected boolean |
storeTermVector
|
| Constructor Summary | |
|---|---|
protected |
AbstractField()
|
protected |
AbstractField(String name,
Field.Store store,
Field.Index index,
Field.TermVector termVector)
|
| Method Summary | |
|---|---|
float |
getBoost()
Returns the boost factor for hits for this field. |
boolean |
getOmitNorms()
True if norms are omitted for this indexed field |
boolean |
isBinary()
True iff the value of the filed is stored as binary |
boolean |
isCompressed()
True if the value of the field is stored and compressed within the index |
boolean |
isIndexed()
True iff the value of the field is to be indexed, so that it may be searched on. |
boolean |
isLazy()
Indicates whether a Field is Lazy or not. |
boolean |
isStored()
True iff the value of the field is to be stored in the index for return with search hits. |
boolean |
isStoreOffsetWithTermVector()
True iff terms are stored as term vector together with their offsets (start and end positon in source text). |
boolean |
isStorePositionWithTermVector()
True iff terms are stored as term vector together with their token positions. |
boolean |
isTermVectorStored()
True iff the term or terms used to index this field are stored as a term vector, available from IndexReader.getTermFreqVector(int,String). |
boolean |
isTokenized()
True iff the value of the field should be tokenized as text prior to indexing. |
String |
name()
Returns the name of the field as an interned string. |
void |
setBoost(float boost)
Sets the boost factor hits on this field. |
void |
setOmitNorms(boolean omitNorms)
Expert: If set, omit normalization factors associated with this indexed field. |
protected void |
setStoreTermVector(Field.TermVector termVector)
|
String |
toString()
Prints a Field for human consumption. |
| 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 |
|---|
binaryValue, readerValue, stringValue, tokenStreamValue |
| Field Detail |
|---|
protected String name
protected boolean storeTermVector
protected boolean storeOffsetWithTermVector
protected boolean storePositionWithTermVector
protected boolean omitNorms
protected boolean isStored
protected boolean isIndexed
protected boolean isTokenized
protected boolean isBinary
protected boolean isCompressed
protected boolean lazy
protected float boost
protected Object fieldsData
| Constructor Detail |
|---|
protected AbstractField()
protected AbstractField(String name,
Field.Store store,
Field.Index index,
Field.TermVector termVector)
| Method Detail |
|---|
public void setBoost(float boost)
The boost is multiplied by Document.getBoost() of the document
containing this field. If a document has multiple fields with the same
name, all such values are multiplied together. This product is then
multipled by the value Similarity.lengthNorm(String,int), and
rounded by Similarity.encodeNorm(float) before it is stored in the
index. One should attempt to ensure that this product does not overflow
the range of that encoding.
setBoost in interface FieldableDocument.setBoost(float),
Similarity.lengthNorm(String, int),
Similarity.encodeNorm(float)public float getBoost()
The default value is 1.0.
Note: this value is not stored directly with the document in the index.
Documents returned from IndexReader.document(int) and
Hits.doc(int) may thus not have the same value present as when
this field was indexed.
getBoost in interface FieldablesetBoost(float)public String name()
name in interface Fieldableprotected void setStoreTermVector(Field.TermVector termVector)
public final boolean isStored()
isStored in interface Fieldablepublic final boolean isIndexed()
isIndexed in interface Fieldablepublic final boolean isTokenized()
isTokenized in interface Fieldablepublic final boolean isCompressed()
isCompressed in interface Fieldablepublic final boolean isTermVectorStored()
IndexReader.getTermFreqVector(int,String).
These methods do not provide access to the original content of the field,
only to terms used to index it. If the original content must be
preserved, use the stored attribute instead.
isTermVectorStored in interface FieldableIndexReader.getTermFreqVector(int, String)public boolean isStoreOffsetWithTermVector()
isStoreOffsetWithTermVector in interface Fieldablepublic boolean isStorePositionWithTermVector()
isStorePositionWithTermVector in interface Fieldablepublic final boolean isBinary()
isBinary in interface Fieldablepublic boolean getOmitNorms()
getOmitNorms in interface Fieldablepublic void setOmitNorms(boolean omitNorms)
setOmitNorms in interface Fieldablepublic boolean isLazy()
FieldableFieldable.stringValue() or Fieldable.binaryValue() is only valid as long as the IndexReader that
retrieved the Document is still open.
isLazy in interface Fieldablepublic final String toString()
toString in class Object
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||