org.apache.lucene.analysis.tokenattributes
public class OffsetAttributeImpl extends AttributeImpl implements OffsetAttribute, Cloneable
OffsetAttribute
.Constructor and Description |
---|
OffsetAttributeImpl()
Initialize this attribute with startOffset and endOffset of 0.
|
Modifier and Type | Method and Description |
---|---|
void |
clear()
Clears the values in this AttributeImpl and resets it to its
default value.
|
void |
copyTo(AttributeImpl target)
Copies the values from this Attribute into the passed-in
target attribute.
|
int |
endOffset()
Returns this Token's ending offset, one greater than the position of the
last character corresponding to this token in the source text.
|
boolean |
equals(Object other) |
int |
hashCode() |
void |
setOffset(int startOffset,
int endOffset)
Set the starting and ending offset.
|
int |
startOffset()
Returns this Token's starting offset, the position of the first character
corresponding to this token in the source text.
|
clone, reflectAsString, reflectWith
public OffsetAttributeImpl()
public int startOffset()
OffsetAttribute
Note that the difference between OffsetAttribute.endOffset()
and startOffset()
may not be equal to termText.length(), as the term text may have been altered by a
stemmer or some other filter.
startOffset
in interface OffsetAttribute
OffsetAttribute.setOffset(int, int)
public void setOffset(int startOffset, int endOffset)
OffsetAttribute
setOffset
in interface OffsetAttribute
OffsetAttribute.startOffset()
,
OffsetAttribute.endOffset()
public int endOffset()
OffsetAttribute
endOffset()
- OffsetAttribute.startOffset()
).endOffset
in interface OffsetAttribute
OffsetAttribute.setOffset(int, int)
public void clear()
AttributeImpl
clear
in class AttributeImpl
public void copyTo(AttributeImpl target)
AttributeImpl
copyTo
in class AttributeImpl
Copyright © 2000-2014 Apache Software Foundation. All Rights Reserved.