Array

/**
* 
* @brief DO class: An array.
*/

Inherit from ArrayDO

Primary key: element_hash_id: int

schema Array extends ArrayDO {
  @primary element_hash_id: int,
  name: string
}

Array::getName

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

Array::__all__

Data constraint method.

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

Array::getTypeElement

/**
* @brief gets the type for the element.
* @return TypeElement
*/
pub fn getTypeElement(self: Array) -> TypeElement;