ConstructorInvocationDO

/**
* @brief DO class: A constructor invocation.
*/

Primary key: element_hash_id: int

schema ConstructorInvocationDO {
  @primary element_hash_id: int,
  class_reference_hash_id: int
}

ConstructorInvocationDO::getClassReferenceHashId

/**
* @brief gets the class reference hash id of this element.
* @return int
*/
pub fn getClassReferenceHashId(self: ConstructorInvocationDO) -> int;

ConstructorInvocationDO::__all__

Data constraint method.

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