@Deprecated public class Token extends PackedTokenAttributeImpl implements FlagsAttribute, PayloadAttribute
The start and end offsets permit applications to re-associate a token with its source text, e.g., to display highlighted query terms in a document browser, or to show matching text fragments in a KWIC display, etc.
The type is a string, assigned by a lexical analyzer (a.k.a. tokenizer), naming the lexical or syntactic class that the token belongs to. For example an end of sentence marker token might be implemented with type "eos". The default token type is "word".
A Token can optionally have metadata (a.k.a. payload) in the form of a variable
length byte array. Use DocsAndPositionsEnum.getPayload()
to retrieve the
payloads from the index.
NOTE: As of 2.9, Token implements all Attribute
interfaces
that are part of core Lucene and can be found in the tokenattributes
subpackage.
Even though it is not necessary to use Token anymore, with the new TokenStream API it can
be used as convenience class that implements all Attribute
s, which is especially useful
to easily switch from the old to the new TokenStream API.
A few things to note:
TokenStreams
can be chained, one cannot assume that the Token's
current type is correct.
Please note: With Lucene 3.1, the toString()
method had to be changed to match the
CharSequence
interface introduced by the interface CharTermAttribute
.
This method now only prints the term text, no additional information anymore.
Modifier and Type | Field and Description |
---|---|
static AttributeFactory |
TOKEN_ATTRIBUTE_FACTORY
Deprecated.
Convenience factory that returns
Token as implementation for the basic
attributes and return the default impl (with "Impl" appended) for all other
attributes. |
DEFAULT_TYPE
Constructor and Description |
---|
Token()
Deprecated.
Constructs a Token will null text.
|
Token(char[] startTermBuffer,
int termBufferOffset,
int termBufferLength,
int start,
int end)
Deprecated.
Constructs a Token with the given term buffer (offset
& length), start and end
offsets
|
Token(CharSequence text,
int start,
int end)
Deprecated.
Constructs a Token with the given term text, and start
& end offsets.
|
Token(int start,
int end)
Deprecated.
Constructs a Token with null text and start & end
offsets.
|
Token(int start,
int end,
int flags)
Deprecated.
Constructs a Token with null text and start & end
offsets plus flags.
|
Token(int start,
int end,
String typ)
Deprecated.
Constructs a Token with null text and start & end
offsets plus the Token type.
|
Token(String text,
int start,
int end,
int flags)
Deprecated.
Constructs a Token with the given text, start and end
offsets, & type.
|
Token(String text,
int start,
int end,
String typ)
Deprecated.
Constructs a Token with the given text, start and end
offsets, & type.
|
Modifier and Type | Method and Description |
---|---|
void |
clear()
Deprecated.
Resets the term text, payload, flags, positionIncrement, positionLength,
startOffset, endOffset and token type to default.
|
Token |
clone()
Deprecated.
Shallow clone.
|
void |
copyTo(AttributeImpl target)
Deprecated.
Copies the values from this Attribute into the passed-in
target attribute.
|
boolean |
equals(Object obj)
Deprecated.
|
int |
getFlags()
Deprecated.
Get the bitset for any bits that have been set.
|
BytesRef |
getPayload()
Deprecated.
Returns this Token's payload.
|
int |
hashCode()
Deprecated.
|
void |
reflectWith(AttributeReflector reflector)
Deprecated.
This method is for introspection of attributes, it should simply
add the key/values this attribute holds to the given
AttributeReflector . |
Token |
reinit(char[] newTermBuffer,
int newTermOffset,
int newTermLength,
int newStartOffset,
int newEndOffset)
Deprecated.
Shorthand for calling
clear() ,
CharTermAttributeImpl.copyBuffer(char[], int, int) ,
PackedTokenAttributeImpl.setOffset(int, int) ,
PackedTokenAttributeImpl.setType(java.lang.String) on Token.DEFAULT_TYPE |
Token |
reinit(char[] newTermBuffer,
int newTermOffset,
int newTermLength,
int newStartOffset,
int newEndOffset,
String newType)
Deprecated.
|
Token |
reinit(String newTerm,
int newStartOffset,
int newEndOffset)
Deprecated.
Shorthand for calling
clear() ,
CharTermAttributeImpl.append(CharSequence) ,
PackedTokenAttributeImpl.setOffset(int, int) ,
PackedTokenAttributeImpl.setType(java.lang.String) on Token.DEFAULT_TYPE |
Token |
reinit(String newTerm,
int newTermOffset,
int newTermLength,
int newStartOffset,
int newEndOffset)
Deprecated.
Shorthand for calling
clear() ,
CharTermAttributeImpl.append(CharSequence, int, int) ,
PackedTokenAttributeImpl.setOffset(int, int) ,
PackedTokenAttributeImpl.setType(java.lang.String) on Token.DEFAULT_TYPE |
Token |
reinit(String newTerm,
int newTermOffset,
int newTermLength,
int newStartOffset,
int newEndOffset,
String newType)
Deprecated.
|
Token |
reinit(String newTerm,
int newStartOffset,
int newEndOffset,
String newType)
Deprecated.
|
void |
reinit(Token prototype)
Deprecated.
Copy the prototype token's fields into this one.
|
void |
reinit(Token prototype,
char[] newTermBuffer,
int offset,
int length)
Deprecated.
Copy the prototype token's fields into this one, with a different term.
|
void |
reinit(Token prototype,
String newTerm)
Deprecated.
Copy the prototype token's fields into this one, with a different term.
|
void |
setFlags(int flags)
Deprecated.
Set the flags to a new bitset.
|
void |
setPayload(BytesRef payload)
Deprecated.
Sets this Token's payload.
|
endOffset, getPositionIncrement, getPositionLength, setOffset, setPositionIncrement, setPositionLength, setType, startOffset, type
append, append, append, append, append, append, buffer, charAt, copyBuffer, fillBytesRef, getBytesRef, length, resizeBuffer, setEmpty, setLength, subSequence, toString
reflectAsString
public static final AttributeFactory TOKEN_ATTRIBUTE_FACTORY
Token
as implementation for the basic
attributes and return the default impl (with "Impl" appended) for all other
attributes.public Token()
public Token(int start, int end)
start
- start offset in the source textend
- end offset in the source textpublic Token(int start, int end, String typ)
start
- start offset in the source textend
- end offset in the source texttyp
- the lexical type of this Tokenpublic Token(int start, int end, int flags)
start
- start offset in the source textend
- end offset in the source textflags
- The bits to set for this tokenpublic Token(CharSequence text, int start, int end)
text
- term textstart
- start offset in the source textend
- end offset in the source textpublic Token(String text, int start, int end, String typ)
text
- term textstart
- start offset in the source textend
- end offset in the source texttyp
- token typepublic Token(String text, int start, int end, int flags)
text
- term textstart
- start offset in the source textend
- end offset in the source textflags
- token type bitspublic Token(char[] startTermBuffer, int termBufferOffset, int termBufferLength, int start, int end)
startTermBuffer
- buffer containing term texttermBufferOffset
- the index in the buffer of the first charactertermBufferLength
- number of valid characters in the bufferstart
- start offset in the source textend
- end offset in the source textpublic int getFlags()
getFlags
in interface FlagsAttribute
FlagsAttribute
public void setFlags(int flags)
setFlags
in interface FlagsAttribute
FlagsAttribute
public BytesRef getPayload()
getPayload
in interface PayloadAttribute
PayloadAttribute
public void setPayload(BytesRef payload)
setPayload
in interface PayloadAttribute
PayloadAttribute
public void clear()
clear
in class PackedTokenAttributeImpl
public Token clone()
AttributeImpl
clone
in class PackedTokenAttributeImpl
public boolean equals(Object obj)
equals
in class PackedTokenAttributeImpl
public int hashCode()
hashCode
in class PackedTokenAttributeImpl
public Token reinit(char[] newTermBuffer, int newTermOffset, int newTermLength, int newStartOffset, int newEndOffset, String newType)
clear()
,
CharTermAttributeImpl.copyBuffer(char[], int, int)
,
PackedTokenAttributeImpl.setOffset(int, int)
,
PackedTokenAttributeImpl.setType(java.lang.String)
public Token reinit(char[] newTermBuffer, int newTermOffset, int newTermLength, int newStartOffset, int newEndOffset)
clear()
,
CharTermAttributeImpl.copyBuffer(char[], int, int)
,
PackedTokenAttributeImpl.setOffset(int, int)
,
PackedTokenAttributeImpl.setType(java.lang.String)
on Token.DEFAULT_TYPEpublic Token reinit(String newTerm, int newStartOffset, int newEndOffset, String newType)
clear()
,
CharTermAttributeImpl.append(CharSequence)
,
PackedTokenAttributeImpl.setOffset(int, int)
,
PackedTokenAttributeImpl.setType(java.lang.String)
public Token reinit(String newTerm, int newTermOffset, int newTermLength, int newStartOffset, int newEndOffset, String newType)
clear()
,
CharTermAttributeImpl.append(CharSequence, int, int)
,
PackedTokenAttributeImpl.setOffset(int, int)
,
PackedTokenAttributeImpl.setType(java.lang.String)
public Token reinit(String newTerm, int newStartOffset, int newEndOffset)
clear()
,
CharTermAttributeImpl.append(CharSequence)
,
PackedTokenAttributeImpl.setOffset(int, int)
,
PackedTokenAttributeImpl.setType(java.lang.String)
on Token.DEFAULT_TYPEpublic Token reinit(String newTerm, int newTermOffset, int newTermLength, int newStartOffset, int newEndOffset)
clear()
,
CharTermAttributeImpl.append(CharSequence, int, int)
,
PackedTokenAttributeImpl.setOffset(int, int)
,
PackedTokenAttributeImpl.setType(java.lang.String)
on Token.DEFAULT_TYPEpublic void reinit(Token prototype)
prototype
- source Token to copy fields frompublic void reinit(Token prototype, String newTerm)
prototype
- existing TokennewTerm
- new term textpublic void reinit(Token prototype, char[] newTermBuffer, int offset, int length)
prototype
- existing TokennewTermBuffer
- buffer containing new term textoffset
- the index in the buffer of the first characterlength
- number of valid characters in the bufferpublic void copyTo(AttributeImpl target)
AttributeImpl
copyTo
in class PackedTokenAttributeImpl
public void reflectWith(AttributeReflector reflector)
AttributeImpl
AttributeReflector
.
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 Attribute
interfaces and keys are passed to AttributeReflector.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. null
properties!
reflectWith
in class PackedTokenAttributeImpl
AttributeImpl.reflectAsString(boolean)
Copyright © 2000-2014 Apache Software Foundation. All Rights Reserved.