|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.lucene.util.AttributeImpl
org.apache.lucene.analysis.tokenattributes.OffsetAttributeImpl
public class OffsetAttributeImpl
The start and end character offset of a Token.
| Constructor Summary | |
|---|---|
OffsetAttributeImpl()
|
|
| Method Summary | |
|---|---|
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)
All values used for computation of AttributeImpl.hashCode()
should be checked here for equality. |
int |
hashCode()
Subclasses must implement this method and should compute a hashCode similar to this: |
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. |
| Methods inherited from class org.apache.lucene.util.AttributeImpl |
|---|
clone, toString |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public OffsetAttributeImpl()
| Method Detail |
|---|
public int startOffset()
startOffset in interface OffsetAttribute
public void setOffset(int startOffset,
int endOffset)
setOffset in interface OffsetAttributeand #endOffset()public int endOffset()
endOffset in interface OffsetAttributepublic void clear()
AttributeImpl
clear in class AttributeImplpublic boolean equals(Object other)
AttributeImplAttributeImpl.hashCode()
should be checked here for equality.
see also Object.equals(Object)
equals in class AttributeImplpublic int hashCode()
AttributeImpl
public int hashCode() {
int code = startOffset;
code = code * 31 + endOffset;
return code;
}
see also AttributeImpl.equals(Object)
hashCode in class AttributeImplpublic void copyTo(AttributeImpl target)
AttributeImpl
copyTo in class AttributeImpl
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||