AnnotationDb
Attributes
- Graph
-
- Supertypes
-
trait AnnotationBasetrait Expressiontrait CfgNodetrait AstNodetrait ExpressionBasetrait CfgNodeBasetrait AstNodeBasetrait StoredNodetrait Producttrait Equalstrait AbstractNodetrait StaticType[AnyRef]class NodeDbclass Nodetrait NodeOrDetachedNodeclass Elementclass Objecttrait Matchableclass AnyShow all
Members list
Value members
Concrete methods
Attributes
- Definition Classes
Attributes
- Definition Classes
Attributes
- Definition Classes
Attributes
- Definition Classes
Attributes
- Definition Classes
-
Node
Attributes
- Definition Classes
Attributes
- Definition Classes
-
Equals
Attributes
- Definition Classes
Attributes
- Definition Classes
Attributes
- Definition Classes
-
NodeDb
Attributes
- Definition Classes
-
Product
Attributes
- Definition Classes
-
Product
Attributes
- Definition Classes
-
Product
Attributes
- Definition Classes
-
Product
faster than the default implementation
faster than the default implementation
Attributes
- Definition Classes
-
NodeDb -> Element
faster than the default implementation
faster than the default implementation
Attributes
- Definition Classes
-
NodeDb
Attributes
- Definition Classes
-
Element
Attributes
- Definition Classes
-
NodeDb
Inherited methods
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Traverse to AST_NODE via ARGUMENT OUT edge.
Traverse to AST_NODE via AST IN edge.
Traverse to AST_NODE via CFG IN edge.
Traverse to AST_NODE via REACHING_DEF IN edge.
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Traverse to BLOCK via CFG IN edge.
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Traverse to CALL_REPR via CFG IN edge.
Traverse to CALL via CFG IN edge.
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Traverse to CFG_NODE via ARGUMENT OUT edge.
Traverse to CFG_NODE via AST IN edge.
Traverse to CFG_NODE via CFG IN edge.
Traverse to CFG_NODE via REACHING_DEF IN edge.
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Traverse to CONTROL_STRUCTURE via CFG IN edge.
Traverse to DECLARATION via CFG IN edge.
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Traverse to EXPRESSION via ARGUMENT OUT edge.
Traverse to EXPRESSION via AST IN edge.
Traverse to EXPRESSION via CFG IN edge.
Traverse to EXPRESSION via REACHING_DEF IN edge.
Traverse to FIELD_IDENTIFIER via CFG IN edge.
Traverse to IDENTIFIER via CFG IN edge.
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Traverse to JUMP_TARGET via CFG IN edge.
Traverse to LITERAL via CFG IN edge.
Traverse to METHOD_REF via CFG IN edge.
Traverse to METHOD via CFG IN edge.
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Traverse to TEMPLATE_DOM via ARGUMENT OUT edge.
Traverse to TEMPLATE_DOM via AST IN edge.
Traverse to TEMPLATE_DOM via REACHING_DEF IN edge.
Traverse to TYPE_REF via CFG IN edge.
Traverse to UNKNOWN via CFG IN edge.
Attributes
- Inherited from:
- AnnotationBase
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Compares the receiver object (this
) with the argument object (that
) for equivalence.
Compares the receiver object (this
) with the argument object (that
) for equivalence.
Any implementation of this method should be an equivalence relation:
- It is reflexive: for any instance
x
of typeAny
,x.equals(x)
should returntrue
. - It is symmetric: for any instances
x
andy
of typeAny
,x.equals(y)
should returntrue
if and only ify.equals(x)
returnstrue
. - It is transitive: for any instances
x
,y
, andz
of typeAny
ifx.equals(y)
returnstrue
andy.equals(z)
returnstrue
, thenx.equals(z)
should returntrue
.
If you override this method, you should verify that your implementation remains an equivalence relation. Additionally, when overriding this method it is usually necessary to override hashCode
to ensure that objects which are "equal" (o1.equals(o2)
returns true
) hash to the same scala.Int. (o1.hashCode.equals(o2.hashCode)
).
Value parameters
- that
-
the object to compare against this object for equality.
Attributes
- Returns
-
true
if the receiver object is equivalent to the argument;false
otherwise. - Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Calculate a hash code value for the object.
Calculate a hash code value for the object.
The default hashing algorithm is platform dependent.
Note that it is allowed for two objects to have identical hash codes (o1.hashCode.equals(o2.hashCode)
) yet not be equal (o1.equals(o2)
returns false
). A degenerate implementation could always return 0
. However, it is required that if two objects are equal (o1.equals(o2)
returns true
) that they have identical hash codes (o1.hashCode.equals(o2.hashCode)
). Therefore, when overriding this method, be sure to verify that the behavior is consistent with the equals
method.
Attributes
- Returns
-
the hash code value for this object.
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- Product
Attributes
- Inherited from:
- Product
Attributes
- Inherited from:
- Element
Attributes
- Inherited from:
- Element
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- NodeDb
Attributes
- Inherited from:
- StoredNode
Deprecated and Inherited methods
Attributes
- Deprecated
- true
- Inherited from:
- Node
Attributes
- Deprecated
- true
- Inherited from:
- Node
Attributes
- Deprecated
- true
- Inherited from:
- Node
Attributes
- Deprecated
- true
- Inherited from:
- Node
Attributes
- Deprecated
- true
- Inherited from:
- Element
Attributes
- Deprecated
- true
- Inherited from:
- Element
Attributes
- Deprecated
- true
- Inherited from:
- Element
Attributes
- Deprecated
- true
- Inherited from:
- Element
Attributes
- Deprecated
- true
- Inherited from:
- Element