final class Ident extends Token with Product with Serializable
- Annotations
- @tokenClass( "identifier" , true ) @leafClass()
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Ident
- Token
- Serializable
- Serializable
- Product
- Equals
- Token
- Adt
- InternalToken
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
- def +(other: String): String
- def ->[B](y: B): (Ident, B)
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
canEqual(other: Any): Boolean
- Definition Classes
- Ident → Equals
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
- def copy(input: Input = this.input, dialect: Dialect = this.dialect, start: Int = this.start, end: Int = this.end, value: String = this.value): Ident
- val dialect: Dialect
- val end: Int
- def ensuring(cond: (Ident) ⇒ Boolean, msg: ⇒ Any): Ident
- def ensuring(cond: (Ident) ⇒ Boolean): Ident
- def ensuring(cond: Boolean, msg: ⇒ Any): Ident
- def ensuring(cond: Boolean): Ident
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(other: Any): Boolean
- Definition Classes
- Ident → Equals → AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- Ident → AnyRef → Any
- val input: Input
-
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
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def pos: Position
-
def
productArity: Int
- Definition Classes
- Ident → Product
-
def
productElement(n: Int): Any
- Definition Classes
- Ident → Product
-
def
productIterator: Iterator[Any]
- Definition Classes
- Ident → Product
-
def
productPrefix: String
- Definition Classes
- Ident → Product
- val start: Int
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
text: String
- Definition Classes
- Token
-
final
def
toString(): String
- Definition Classes
- Ident → AnyRef → Any
- val value: String
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
- def →[B](y: B): (Ident, B)
Deprecated Value Members
-
def
formatted(fmtstr: String): String
- Implicit
- This member is added by an implicit conversion from Ident to StringFormat[Ident] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.12.16) Use
formatString.format(value)
instead ofvalue.formatted(formatString)
, or use thef""
string interpolator. In Java 15 and later,formatted
resolves to the new method in String which has reversed parameters.