org.hibernate.hql.ast
Class HqlToken
antlr.CommonToken
org.hibernate.hql.ast.HqlToken
public class HqlToken
extends antlr.CommonToken
A custom token class for the HQL grammar.
NOTE: This class must be public becuase it is instantiated by the ANTLR library. Ignore any suggestions
by various code 'analyzers' about this class being package local.
boolean | isPossibleID() - Returns true if the token could be an identifier.
|
void | setPossibleID(boolean possibleID) - Set to true if this token can be interpreted as an identifier,
false if not.
|
void | setType(int t) - Sets the type of the token, remembering the previous type.
|
String | toString() - Returns a string representation of the object.
|
isPossibleID
public boolean isPossibleID()
Returns true if the token could be an identifier.
- True if the token could be interpreted as in identifier,
false if not.
setPossibleID
public void setPossibleID(boolean possibleID)
Set to true if this token can be interpreted as an identifier,
false if not.
possibleID
- True if this is a keyword/identifier, false if not.
setType
public void setType(int t)
Sets the type of the token, remembering the previous type.
toString
public String toString()
Returns a string representation of the object.
- String - The debug string.