LambdaExpressionDO

/**
* @brief DO class: A lambda expression.
*/

Primary key: element_hash_id: int

schema LambdaExpressionDO {
  @primary element_hash_id: int,
  parameter_list_hash_id: int,
  body_hash_id: int,
  is_void_compatible: int,
  is_value_compatible: int
}

LambdaExpressionDO::getIsValueCompatible

/**
* @brief gets the is value compatible of this element.
* @return int
*/
pub fn getIsValueCompatible(self: LambdaExpressionDO) -> int;

LambdaExpressionDO::getIsVoidCompatible

/**
* @brief gets the is void compatible of this element.
* @return int
*/
pub fn getIsVoidCompatible(self: LambdaExpressionDO) -> int;

LambdaExpressionDO::getBodyHashId

/**
* @brief gets the body hash id of this element.
* @return int
*/
pub fn getBodyHashId(self: LambdaExpressionDO) -> int;

LambdaExpressionDO::__all__

Data constraint method.

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

LambdaExpressionDO::getParameterListHashId

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