MethodAccessExpressionWithTypeDO

/**
* @brief DO class: A method access expression with type.
*/

Primary key: element_hash_id: int

schema MethodAccessExpressionWithTypeDO {
  @primary element_hash_id: int,
  type_hash_id: int,
  referen_method_hash_id: int,
  argument_list_hash_id: int
}

MethodAccessExpressionWithTypeDO::getArgumentListHashId

/**
* @brief gets the argument list hash id of this element.
* @return int
*/
pub fn getArgumentListHashId(self: MethodAccessExpressionWithTypeDO) -> int;

MethodAccessExpressionWithTypeDO::getReferenMethodHashId

/**
* @brief gets the referen method hash id of this element.
* @return int
*/
pub fn getReferenMethodHashId(self: MethodAccessExpressionWithTypeDO) -> int;

MethodAccessExpressionWithTypeDO::__all__

Data constraint method.

pub fn __all__(db: JavaDB) -> *MethodAccessExpressionWithTypeDO;

MethodAccessExpressionWithTypeDO::getTypeHashId

/**
* @brief gets the type hash id of this element.
* @return int
*/
pub fn getTypeHashId(self: MethodAccessExpressionWithTypeDO) -> int;