Primitive

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

Inherit from PrimitiveDO

Primary key: oid: int

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

Primitive::getName

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

Primitive::__all__

Data constraint method.

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