ModifierDO

/**
* @brief DO class: A modifier.
*/

Primary key: element_hash_id: int

schema ModifierDO {
  @primary element_hash_id: int,
  name: string,
  parent_hash_id: int,
  location_hash_id: int
}

ModifierDO::getParentHashId

/**
* @brief gets the parent hash id of this element.
* @return int
*/
pub fn getParentHashId(self: ModifierDO) -> int;

ModifierDO::getLocationHashId

/**
* @brief gets the location hash id of this element.
* @return int
*/
pub fn getLocationHashId(self: ModifierDO) -> int;

ModifierDO::__all__

Data constraint method.

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

ModifierDO::getName

/**
* @brief gets the name of this element.
* @return string
*/
pub fn getName(self: ModifierDO) -> string;