PrimitiveDO

/**
* @brief DO class: A primitive type, includes "boolean", "byte", "short", "char", "int", "long", "float" and "double".
*/

Primary key: oid: int

schema PrimitiveDO {
  @primary oid: int,
  name: string
}

PrimitiveDO::getName

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

PrimitiveDO::__all__

Data constraint method.

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