MethodReferenceExpression
/**
* @brief A call of a method.
*/
Inherit from Expression
Primary key: element_hash_id: int
schema MethodReferenceExpression extends Expression {
@primary element_hash_id: int,
name: string,
parent_hash_id: int,
index_order: int,
location_hash_id: int,
printable_text: string
}
MethodReferenceExpression::getIndex
/**
* @brief gets the index order of this element.
* @return int
*/
- Parameter
self
:MethodReferenceExpression
- Return
int
pub fn getIndex(self: MethodReferenceExpression) -> int;
MethodReferenceExpression::getMethod
/**
* @brief gets the method of the call.
* @return Method
*/
- Parameter
self
:MethodReferenceExpression
- Return
Method
pub fn getMethod(self: MethodReferenceExpression) -> Method;
MethodReferenceExpression::getCallable
/**
* @brief gets the callable of the call.
* @return Callable
*/
- Parameter
self
:MethodReferenceExpression
- Return
Callable
pub fn getCallable(self: MethodReferenceExpression) -> Callable;
MethodReferenceExpression::getPrintableText
/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
- Parameter
self
:MethodReferenceExpression
- Return
string
pub fn getPrintableText(self: MethodReferenceExpression) -> string;
MethodReferenceExpression::getLocation
/**
* @brief gets the location for the element.
* @return Location
*/
- Parameter
self
:MethodReferenceExpression
- Return
Location
pub fn getLocation(self: MethodReferenceExpression) -> Location;
MethodReferenceExpression::getEnclosingCallable
/**
* @brief gets the callable in which this expression occurs.
* @return Callable
*/
- Parameter
self
:MethodReferenceExpression
- Return
Callable
pub fn getEnclosingCallable(self: MethodReferenceExpression) -> Callable;
MethodReferenceExpression::__all__
Data constraint method.
- Parameter
db
:JavaDB
- Return
*MethodReferenceExpression
pub fn __all__(db: JavaDB) -> *MethodReferenceExpression;
MethodReferenceExpression::getType
/**
* @brief gets the type for the element.
* @return Type
*/
- Parameter
self
:MethodReferenceExpression
- Return
Type
pub fn getType(self: MethodReferenceExpression) -> Type;
MethodReferenceExpression::getParentHashId
/**
* @brief gets the parent hash id of this element.
* @return int
*/
- Parameter
self
:MethodReferenceExpression
- Return
int
pub fn getParentHashId(self: MethodReferenceExpression) -> int;
MethodReferenceExpression::getEnclosingStatement
/**
* @brief gets the statement which encloses the expression.
* @return Statement
*/
- Parameter
self
:MethodReferenceExpression
- Return
Statement
pub fn getEnclosingStatement(self: MethodReferenceExpression) -> Statement;
MethodReferenceExpression::getReference
/**
* @brief gets the reference expression of the element.
* @return ReferenceExpression
*/
- Parameter
self
:MethodReferenceExpression
- Return
ReferenceExpression
pub fn getReference(self: MethodReferenceExpression) -> ReferenceExpression;
MethodReferenceExpression::getAnAncestor
/**
* @brief gets an ancestor of the element.
* @return ElementParent
*/
- Parameter
self
:MethodReferenceExpression
- Return
*ElementParent
pub fn getAnAncestor(self: MethodReferenceExpression) -> *ElementParent;
MethodReferenceExpression::getParent
/**
* @brief gets the parent of the expression.
* @return ElementParent
*/
- Parameter
self
:MethodReferenceExpression
- Return
ElementParent
pub fn getParent(self: MethodReferenceExpression) -> ElementParent;
MethodReferenceExpression::getLocationHashId
/**
* @brief gets the location hash id of this element.
* @return int
*/
- Parameter
self
:MethodReferenceExpression
- Return
int
pub fn getLocationHashId(self: MethodReferenceExpression) -> int;
MethodReferenceExpression::getConstructor
/**
* @brief gets the constructor of the call.
* @return Constructor
*/
- Parameter
self
:MethodReferenceExpression
- Return
Constructor
pub fn getConstructor(self: MethodReferenceExpression) -> Constructor;
MethodReferenceExpression::getSize
/**
* @brief gets the size information for the element.
* @return NumberOfLines
*/
- Parameter
self
:MethodReferenceExpression
- Return
NumberOfLines
pub fn getSize(self: MethodReferenceExpression) -> NumberOfLines;