Packages

final case class ApexConstructorDeclaration(_modifiers: ModifierResults, qualifiedName: QualifiedName, parameters: ArraySeq[FormalParameter], thisType: ThisType, block: Block) extends ClassBodyDeclaration with ApexConstructorLike with Product with Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ApexConstructorDeclaration
  2. Serializable
  3. Product
  4. Equals
  5. ApexConstructorLike
  6. Referenceable
  7. ApexVisibleConstructorLike
  8. ConstructorDeclaration
  9. Parameters
  10. Dependent
  11. IdentityEquality
  12. ClassBodyDeclaration
  13. ApexNode
  14. IdLocatable
  15. DependencyHolder
  16. CST
  17. Positionable
  18. UnsafeLocatable
  19. Locatable
  20. AnyRef
  21. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ApexConstructorDeclaration(_modifiers: ModifierResults, qualifiedName: QualifiedName, parameters: ArraySeq[FormalParameter], thisType: ThisType, block: Block)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val _modifiers: ModifierResults
  5. def addDependencyHolder(dependencyHolder: DependencyHolder): Unit
    Definition Classes
    Dependent
  6. def addReferencingLocation(referencingLocation: PathLocation): Unit

    Add a reference location to the list of references for this specific Referencable.

    Add a reference location to the list of references for this specific Referencable. Adding references is gated so that we can control when references are collected. This must be called from some part of the validation logic to establish the references.

    Definition Classes
    Referenceable
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. val block: Block
  9. val children: ArraySeq[ApexNode]
    Definition Classes
    ApexConstructorDeclarationApexNode
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  11. def collectDependencies(dependsOn: Set[Dependent]): Unit
    Definition Classes
    ClassBodyDeclaration
  12. def collectIssues(issues: ArrayBuffer[Issue]): Unit
    Attributes
    protected
    Definition Classes
    ApexNode
  13. def collectIssues(): ArraySeq[Issue]
    Definition Classes
    ApexNode
  14. def collectRelatedReferencable(): Set[_ <: Referenceable]

    Collect all the referenceable elements that are related to this class.

    Collect all the referenceable elements that are related to this class. Override this to expand the reference search, such as for method overloading.

    Definition Classes
    Referenceable
  15. def dependencies(): Iterable[Dependent]

    Get Dependents being held, default to empty for holders who do not use this, override as needed

    Get Dependents being held, default to empty for holders who do not use this, override as needed

    Definition Classes
    ClassBodyDeclarationDependencyHolder
  16. def dependencySummary(): Array[DependentSummary]

    Convert dependencies into a summary format

    Convert dependencies into a summary format

    Definition Classes
    DependencyHolder
  17. var depends: Option[SkinnySet[Dependent]]
    Attributes
    protected
    Definition Classes
    ClassBodyDeclaration
  18. val description: String
    Definition Classes
    ClassBodyDeclarationApexNode
  19. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. def equals(that: Any): Boolean
    Definition Classes
    IdentityEquality → AnyRef → Any
  21. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  22. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  23. def getCurrentReferences(refresh: (Seq[PathLike]) => Unit): Set[TargetLocation]

    Collect all reference locations for this Referencable.

    Collect all reference locations for this Referencable. The basic approach here is to collect references to things during a revalidation pass. The ReferenceProvider uses this.

    Definition Classes
    Referenceable
  24. def getDependencyHolders: Set[DependencyHolder]
    Definition Classes
    Dependent
  25. def hasCompatibleParameters(params: ArraySeq[TypeName], allowPlatformGenericEquivalence: Boolean): Boolean

    Test if this params are compatible with those passed.

    Test if this params are compatible with those passed. Ideally this would just be a comparison of type names but there is a quirk in how platform generic interfaces are handled.

    Definition Classes
    Parameters
  26. def hasHolders: Boolean
    Definition Classes
    Dependent
  27. def hasMoreSpecificParams(otherParams: ArraySeq[ParameterDeclaration], params: ArraySeq[TypeName], context: VerifyContext): Option[Boolean]

    Determine if this params is a more specific version of the passed params.

    Determine if this params is a more specific version of the passed params. For this to be true all the parameters of this parameters must be assignable to the corresponding parameter of the other method. However, when dealing with RecordSets (SOQL results) we also prioritise degrees of specificness and use those to select as well.

    Definition Classes
    Parameters
  28. def hasNonTestHolders: Boolean
    Definition Classes
    Dependent
  29. def hasSameParameters(other: ConstructorDeclaration, allowPlatformGenericEquivalence: Boolean): Boolean

    Test if the passed constructor has params compatible with this method.

    Test if the passed constructor has params compatible with this method. Ideally this would just be a comparison of type names but there is a quirk in how platform generic interfaces are handled.

    Definition Classes
    ConstructorDeclaration
  30. def hashCode(): Int
    Definition Classes
    IdentityEquality → AnyRef → Any
  31. def idLocation: Location
  32. def idPathLocation: PathLocation
    Definition Classes
    IdLocatable
  33. val inTest: Boolean

    Is the holder within test code

    Is the holder within test code

    Definition Classes
    ApexConstructorDeclarationDependencyHolder
  34. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  35. def isTestVisible: Boolean
    Definition Classes
    ConstructorDeclaration
  36. def localIssues: Seq[Issue]
    Definition Classes
    ApexNode
  37. def location: PathLocation
    Definition Classes
    PositionableUnsafeLocatableLocatable
  38. def modifierIssues: ArraySeq[Issue]
    Definition Classes
    ClassBodyDeclaration
  39. val modifiers: ArraySeq[Modifier]
    Definition Classes
    ClassBodyDeclarationApexNode
  40. val name: Name
    Definition Classes
    ApexConstructorDeclarationApexNode
  41. val nature: Nature
    Definition Classes
    ApexConstructorDeclarationApexNode
  42. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  43. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  44. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  45. val parameters: ArraySeq[FormalParameter]
  46. val parseIssues: ArraySeq[Issue]
    Definition Classes
    ClassBodyDeclarationApexNode
  47. def productElementNames: Iterator[String]
    Definition Classes
    Product
  48. def propagateDependencies(): Unit

    Inform each dependent this is holding a dependency to them

    Inform each dependent this is holding a dependency to them

    Definition Classes
    DependencyHolder
  49. val qualifiedName: QualifiedName
  50. def safeLocation: Option[PathLocation]
    Definition Classes
    UnsafeLocatable
  51. def setDepends(dependencies: SkinnySet[Dependent]): Unit
    Definition Classes
    ClassBodyDeclaration
  52. def setLocation(path: PathLike, startLine: Int, startOffset: Int, endLine: Int, endOffset: Int): Unit
    Definition Classes
    Positionable
  53. lazy val signature: String
    Definition Classes
    ClassBodyDeclarationApexNode
  54. def summary: ConstructorSummary
  55. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  56. val thisType: ThisType
  57. val thisTypeId: TypeId

    Referencable must be able to provide a TypeId for the containing type to support revalidation.

    Referencable must be able to provide a TypeId for the containing type to support revalidation.

    Definition Classes
    ApexConstructorDeclarationApexConstructorLikeReferenceable
  58. def thisTypeIdOpt: Option[TypeId]

    The TypeId for the containing type of the holder, optional as requires a module.

    The TypeId for the containing type of the holder, optional as requires a module.

    Definition Classes
    ApexConstructorLikeDependencyHolder
  59. def toString(): String
    Definition Classes
    ConstructorDeclaration → AnyRef → Any
  60. def validate(context: BodyDeclarationVerifyContext): Unit
    Definition Classes
    ClassBodyDeclaration
  61. def verify(context: BodyDeclarationVerifyContext): Unit
  62. def visibility: Modifier
    Definition Classes
    ConstructorDeclaration
  63. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  64. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  65. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  66. def withContext(context: ParserRuleContext): ApexConstructorDeclaration.this.type
    Definition Classes
    CST
  67. def withLocation(location: PathLocation): ApexConstructorDeclaration.this.type
    Definition Classes
    Positionable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from ApexConstructorLike

Inherited from Referenceable

Inherited from ConstructorDeclaration

Inherited from Parameters

Inherited from Dependent

Inherited from IdentityEquality

Inherited from ClassBodyDeclaration

Inherited from ApexNode

Inherited from IdLocatable

Inherited from DependencyHolder

Inherited from CST

Inherited from Positionable

Inherited from UnsafeLocatable

Inherited from Locatable

Inherited from AnyRef

Inherited from Any

Ungrouped