c

scalafix.v1

SymbolInfo

final class SymbolInfo extends AnyRef

Describes metadata about a symbol, which is a definitions such as a method, class or trait.

To learn more about SymbolInfo, refer to the SemanticDB specification for

- Scala SymbolInformation

- Java SymbolInformation

Self Type
SymbolInfo
Linear Supertypes
Ordering
  1. Grouped
  2. Alphabetic
  3. By Inheritance
Inherited
  1. SymbolInfo
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from SymbolInfo to any2stringadd[SymbolInfo] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (SymbolInfo, B)
    Implicit
    This member is added by an implicit conversion from SymbolInfo to ArrowAssoc[SymbolInfo] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def annotations: List[Annotation]
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  9. def displayName: String
  10. def ensuring(cond: (SymbolInfo) ⇒ Boolean, msg: ⇒ Any): SymbolInfo
    Implicit
    This member is added by an implicit conversion from SymbolInfo to Ensuring[SymbolInfo] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: (SymbolInfo) ⇒ Boolean): SymbolInfo
    Implicit
    This member is added by an implicit conversion from SymbolInfo to Ensuring[SymbolInfo] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean, msg: ⇒ Any): SymbolInfo
    Implicit
    This member is added by an implicit conversion from SymbolInfo to Ensuring[SymbolInfo] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean): SymbolInfo
    Implicit
    This member is added by an implicit conversion from SymbolInfo to Ensuring[SymbolInfo] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from SymbolInfo to StringFormat[SymbolInfo] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  18. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. def isAbstract: Boolean

  21. def isCase: Boolean

  22. def isClass: Boolean

  23. def isConstructor: Boolean

  24. def isContravariant: Boolean

  25. def isCovariant: Boolean

  26. def isDefault: Boolean

  27. def isEnum: Boolean

  28. def isField: Boolean

  29. def isFinal: Boolean

  30. def isImplicit: Boolean

  31. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  32. def isInterface: Boolean

  33. def isJava: Boolean

  34. def isLazy: Boolean

  35. def isLocal: Boolean

  36. def isMacro: Boolean

  37. def isMethod: Boolean

    Returns true for val, var and def symbols in Scala, and true for Java methods.

    Returns true for val, var and def symbols in Scala, and true for Java methods.

    Use the absence of isVal and isVar to detect a def in Scala.

  38. def isObject: Boolean

  39. def isPackage: Boolean

  40. def isPackageObject: Boolean

  41. def isParameter: Boolean

  42. def isPrimary: Boolean

  43. def isPrivate: Boolean

  44. def isPrivateThis: Boolean

  45. def isPrivateWithin: Boolean

  46. def isProtected: Boolean

  47. def isProtectedThis: Boolean

  48. def isProtectedWithin: Boolean

  49. def isPublic: Boolean

  50. def isScala: Boolean

  51. def isSealed: Boolean

  52. def isSelfParameter: Boolean

  53. def isSetter: Boolean
  54. def isStatic: Boolean

  55. def isTrait: Boolean

  56. def isType: Boolean

  57. def isTypeParameter: Boolean

  58. def isVal: Boolean

  59. def isVar: Boolean

  60. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  61. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  62. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  63. def owner: Symbol
  64. def signature: Signature
  65. def symbol: Symbol
  66. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  67. def toString(): String
    Definition Classes
    SymbolInfo → AnyRef → Any
  68. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  69. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  70. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  71. def within: Option[Symbol]

  72. def [B](y: B): (SymbolInfo, B)
    Implicit
    This member is added by an implicit conversion from SymbolInfo to ArrowAssoc[SymbolInfo] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from SymbolInfo to any2stringadd[SymbolInfo]

Inherited by implicit conversion StringFormat from SymbolInfo to StringFormat[SymbolInfo]

Inherited by implicit conversion Ensuring from SymbolInfo to Ensuring[SymbolInfo]

Inherited by implicit conversion ArrowAssoc from SymbolInfo to ArrowAssoc[SymbolInfo]

Misc

Kind

Describes what kind this symbol is. It is only possible for a symbol to have one kind. For example, it's not possible for a symbol to be both a class and an interface.

Property

Describes the properties of this symbol. It is possible for a symbol to have multiple properties. For example, a symbol can be both implicit and final.

Access

Describes the visibility of this symbol. It is only possible for a symbol to have one access. For example, a symbol is either private or privateThis, it cannot be both. To learn more about Access, refer to the SemanticDB specification.

Language

Describes which language the symbol is defined in.