class ANTLRLexerState extends AnyRef
This class stores the state of an ANTLR lexer, such that it can be applied back to the lexer instance at a later time.
The default implementation stores the following fields, which
provides support for any ANTLR 4 single- or multi-mode lexer that
does not rely on custom state information for semantic predicates,
custom embedded actions, and/or overridden methods such as Lexer#nextToken
or Lexer#emit
.
Lexer#_mode
: The current lexer mode.Lexer#_modeStack
: The current lexer mode stack.
If your lexer requires additional information to be stored, this class must be extended in the following ways.
- Override
#apply
to ensure that the additional state information is applied to the provided lexer instance. - Override
#hashCodeImpl
and#equals
to ensure that the caching features provided are able to efficiently store the resulting state instances.
- Annotations
- @Immutable()
- Alphabetic
- By Inheritance
- ANTLRLexerState
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new ANTLRLexerState(mode: Int, modeStack: IntegerStack)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def apply(lexer: Lexer): Unit
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(obj: AnyRef): Boolean
- Definition Classes
- ANTLRLexerState → AnyRef → Any
- Annotations
- @Override()
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- def getMode(): Int
Gets the value of
Lexer#_mode
for the current lexer state.Gets the value of
Lexer#_mode
for the current lexer state.- returns
The value of
Lexer#_mode
for the current lexer state.
- def getModeStack(): Array[Int]
Gets the mode stack stored in
Lexer#_modeStack
for the current lexer state.Gets the mode stack stored in
Lexer#_modeStack
for the current lexer state.- returns
The mode stack stored in
Lexer#_modeStack
for the current lexer state, ornull
if the mode stack is empty.
- Annotations
- @Nullable()
- final def hashCode(): Int
- Definition Classes
- ANTLRLexerState → AnyRef → Any
- Annotations
- @Override()
- def hashCodeImpl(): Int
- Attributes
- protected[lexer]
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)