Class DocumentField
- java.lang.Object
-
- org.apache.lucene.luke.models.documents.DocumentField
-
public final class DocumentField extends Object
Holder for a document field's information and data.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BytesRefgetBinaryValue()DocValuesTypegetDvType()IndexOptionsgetIdxOptions()StringgetName()longgetNorm()NumbergetNumericValue()intgetPointDimensionCount()intgetPointNumBytes()StringgetStringValue()booleanhasNorms()booleanhasPayloads()booleanhasTermVectors()booleanisStored()StringtoString()
-
-
-
Method Detail
-
getName
public String getName()
-
getIdxOptions
public IndexOptions getIdxOptions()
-
hasTermVectors
public boolean hasTermVectors()
-
hasPayloads
public boolean hasPayloads()
-
hasNorms
public boolean hasNorms()
-
getNorm
public long getNorm()
-
isStored
public boolean isStored()
-
getStringValue
public String getStringValue()
-
getBinaryValue
public BytesRef getBinaryValue()
-
getNumericValue
public Number getNumericValue()
-
getDvType
public DocValuesType getDvType()
-
getPointDimensionCount
public int getPointDimensionCount()
-
getPointNumBytes
public int getPointNumBytes()
-
-