Class NumericTokenStream.NumericTermAttributeImpl
- java.lang.Object
-
- org.apache.lucene.util.AttributeImpl
-
- org.apache.lucene.analysis.NumericTokenStream.NumericTermAttributeImpl
-
- All Implemented Interfaces:
java.lang.Cloneable,NumericTokenStream.NumericTermAttribute,TermToBytesRefAttribute,Attribute
- Enclosing class:
- NumericTokenStream
public static final class NumericTokenStream.NumericTermAttributeImpl extends AttributeImpl implements NumericTokenStream.NumericTermAttribute, TermToBytesRefAttribute
Implementation ofNumericTokenStream.NumericTermAttribute.- Since:
- 4.0
-
-
Constructor Summary
Constructors Constructor Description NumericTermAttributeImpl()Creates, but does not yet initialize this attribute instance
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()Clears the values in this AttributeImpl and resets it to its default value.voidcopyTo(AttributeImpl target)Copies the values from this Attribute into the passed-in target attribute.intfillBytesRef()Updates the bytesTermToBytesRefAttribute.getBytesRef()to contain this term's final encoding, and returns its hashcode.BytesRefgetBytesRef()Retrieve this attribute's BytesRef.longgetRawValue()Returns current token's raw value aslongwith allNumericTokenStream.NumericTermAttribute.getShift()applied, undefined before first tokenintgetShift()Returns current shift value, undefined before first tokenintgetValueSize()Returns value size in bits (32 forfloat,int; 64 fordouble,long)intincShift()Don't call this method!voidinit(long value, int valueSize, int precisionStep, int shift)Don't call this method!voidreflectWith(AttributeReflector reflector)This method is for introspection of attributes, it should simply add the key/values this attribute holds to the givenAttributeReflector.voidsetShift(int shift)Don't call this method!-
Methods inherited from class org.apache.lucene.util.AttributeImpl
clone, reflectAsString
-
-
-
-
Constructor Detail
-
NumericTermAttributeImpl
public NumericTermAttributeImpl()
Creates, but does not yet initialize this attribute instance- See Also:
init(long, int, int, int)
-
-
Method Detail
-
getBytesRef
public BytesRef getBytesRef()
Description copied from interface:TermToBytesRefAttributeRetrieve this attribute's BytesRef. The bytes are updated from the current term when the consumer callsTermToBytesRefAttribute.fillBytesRef().- Specified by:
getBytesRefin interfaceTermToBytesRefAttribute- Returns:
- this Attributes internal BytesRef.
-
fillBytesRef
public int fillBytesRef()
Description copied from interface:TermToBytesRefAttributeUpdates the bytesTermToBytesRefAttribute.getBytesRef()to contain this term's final encoding, and returns its hashcode.- Specified by:
fillBytesRefin interfaceTermToBytesRefAttribute- Returns:
- the hashcode as defined by
BytesRef.hashCode():int hash = 0; for (int i = termBytes.offset; i < termBytes.offset+termBytes.length; i++) { hash = 31*hash + termBytes.bytes[i]; }Implement this for performance reasons, if your code can calculate the hash on-the-fly. If this is not the case, just returntermBytes.hashCode().
-
getShift
public int getShift()
Description copied from interface:NumericTokenStream.NumericTermAttributeReturns current shift value, undefined before first token- Specified by:
getShiftin interfaceNumericTokenStream.NumericTermAttribute
-
setShift
public void setShift(int shift)
Description copied from interface:NumericTokenStream.NumericTermAttributeDon't call this method!- Specified by:
setShiftin interfaceNumericTokenStream.NumericTermAttribute
-
incShift
public int incShift()
Description copied from interface:NumericTokenStream.NumericTermAttributeDon't call this method!- Specified by:
incShiftin interfaceNumericTokenStream.NumericTermAttribute
-
getRawValue
public long getRawValue()
Description copied from interface:NumericTokenStream.NumericTermAttributeReturns current token's raw value aslongwith allNumericTokenStream.NumericTermAttribute.getShift()applied, undefined before first token- Specified by:
getRawValuein interfaceNumericTokenStream.NumericTermAttribute
-
getValueSize
public int getValueSize()
Description copied from interface:NumericTokenStream.NumericTermAttributeReturns value size in bits (32 forfloat,int; 64 fordouble,long)- Specified by:
getValueSizein interfaceNumericTokenStream.NumericTermAttribute
-
init
public void init(long value, int valueSize, int precisionStep, int shift)Description copied from interface:NumericTokenStream.NumericTermAttributeDon't call this method!- Specified by:
initin interfaceNumericTokenStream.NumericTermAttribute
-
clear
public void clear()
Description copied from class:AttributeImplClears the values in this AttributeImpl and resets it to its default value. If this implementation implements more than one Attribute interface it clears all.- Specified by:
clearin classAttributeImpl
-
reflectWith
public void reflectWith(AttributeReflector reflector)
Description copied from class:AttributeImplThis method is for introspection of attributes, it should simply add the key/values this attribute holds to the givenAttributeReflector.The default implementation calls
AttributeReflector.reflect(java.lang.Class<? extends org.apache.lucene.util.Attribute>, java.lang.String, java.lang.Object)for all non-static fields from the implementing class, using the field name as key and the field value as value. The Attribute class is also determined by reflection. Please note that the default implementation can only handle single-Attribute implementations.Custom implementations look like this (e.g. for a combined attribute implementation):
public void reflectWith(AttributeReflector reflector) { reflector.reflect(CharTermAttribute.class, "term", term()); reflector.reflect(PositionIncrementAttribute.class, "positionIncrement", getPositionIncrement()); }If you implement this method, make sure that for each invocation, the same set of
Attributeinterfaces and keys are passed toAttributeReflector.reflect(java.lang.Class<? extends org.apache.lucene.util.Attribute>, java.lang.String, java.lang.Object)in the same order, but possibly different values. So don't automatically exclude e.g.nullproperties!- Overrides:
reflectWithin classAttributeImpl- See Also:
AttributeImpl.reflectAsString(boolean)
-
copyTo
public void copyTo(AttributeImpl target)
Description copied from class:AttributeImplCopies the values from this Attribute into the passed-in target attribute. The target implementation must support all the Attributes this implementation supports.- Specified by:
copyToin classAttributeImpl
-
-