|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.apache.lucene.document.Field
org.apache.lucene.document.StoredField
public final class StoredField
A field whose value is stored so that IndexSearcher.doc(int) and IndexReader.document(int, org.apache.lucene.index.StoredFieldVisitor) will
return the field and its value.
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from class org.apache.lucene.document.Field |
|---|
Field.Index, Field.Store, Field.TermVector |
| Field Summary | |
|---|---|
static FieldType |
TYPE
Type for a stored-only field. |
| Fields inherited from class org.apache.lucene.document.Field |
|---|
boost, fieldsData, name, tokenStream, type |
| Constructor Summary | |
|---|---|
StoredField(String name,
byte[] value)
Create a stored-only field with the given binary value. |
|
StoredField(String name,
byte[] value,
int offset,
int length)
Create a stored-only field with the given binary value. |
|
StoredField(String name,
BytesRef value)
Create a stored-only field with the given binary value. |
|
StoredField(String name,
double value)
Create a stored-only field with the given double value. |
|
StoredField(String name,
float value)
Create a stored-only field with the given float value. |
|
StoredField(String name,
int value)
Create a stored-only field with the given integer value. |
|
StoredField(String name,
long value)
Create a stored-only field with the given long value. |
|
StoredField(String name,
String value)
Create a stored-only field with the given string value. |
|
| Method Summary |
|---|
| Methods inherited from class org.apache.lucene.document.Field |
|---|
binaryValue, boost, fieldType, name, numericValue, readerValue, setBoost, setBytesValue, setBytesValue, setByteValue, setDoubleValue, setFloatValue, setIntValue, setLongValue, setReaderValue, setShortValue, setStringValue, setTokenStream, stringValue, tokenStream, tokenStreamValue, toString, translateFieldType |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
public static final FieldType TYPE
| Constructor Detail |
|---|
public StoredField(String name,
byte[] value)
NOTE: the provided byte[] is not copied so be sure not to change it until you're done with this field.
name - field namevalue - byte array pointing to binary content (not copied)
IllegalArgumentException - if the field name is null.
public StoredField(String name,
byte[] value,
int offset,
int length)
NOTE: the provided byte[] is not copied so be sure not to change it until you're done with this field.
name - field namevalue - byte array pointing to binary content (not copied)offset - starting position of the byte arraylength - valid length of the byte array
IllegalArgumentException - if the field name is null.
public StoredField(String name,
BytesRef value)
NOTE: the provided BytesRef is not copied so be sure not to change it until you're done with this field.
name - field namevalue - BytesRef pointing to binary content (not copied)
IllegalArgumentException - if the field name is null.
public StoredField(String name,
String value)
name - field namevalue - string value
IllegalArgumentException - if the field name or value is null.
public StoredField(String name,
int value)
name - field namevalue - integer value
IllegalArgumentException - if the field name is null.
public StoredField(String name,
float value)
name - field namevalue - float value
IllegalArgumentException - if the field name is null.
public StoredField(String name,
long value)
name - field namevalue - long value
IllegalArgumentException - if the field name is null.
public StoredField(String name,
double value)
name - field namevalue - double value
IllegalArgumentException - if the field name is null.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||