AnnotationAccessArgumentWithoutNameDO

/**
* @brief DO class: An annotation access argument without name.
*/

Primary key: element_hash_id: int

schema AnnotationAccessArgumentWithoutNameDO {
  @primary element_hash_id: int,
  annotation_access_hash_id: int,
  argument_value_hash_id: int,
  location_hash_id: int,
  index_order: int,
  printable_text: string
}

AnnotationAccessArgumentWithoutNameDO::getPrintableText

/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
pub fn getPrintableText(self: AnnotationAccessArgumentWithoutNameDO) -> string;

AnnotationAccessArgumentWithoutNameDO::getAnnotationAccessHashId

/**
* @brief gets the annotation access hash id of this element.
* @return int
*/
pub fn getAnnotationAccessHashId(self: AnnotationAccessArgumentWithoutNameDO) -> int;

AnnotationAccessArgumentWithoutNameDO::__all__

Data constraint method.

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

AnnotationAccessArgumentWithoutNameDO::getArgumentValueHashId

/**
* @brief gets the argument value hash id of this element.
* @return int
*/
pub fn getArgumentValueHashId(self: AnnotationAccessArgumentWithoutNameDO) -> int;

AnnotationAccessArgumentWithoutNameDO::getLocationHashId

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

AnnotationAccessArgumentWithoutNameDO::getIndex

/**
* @brief gets the index order of this element.
* @return int
*/
pub fn getIndex(self: AnnotationAccessArgumentWithoutNameDO) -> int;