AnnotationAccessArgumentWithNameDO

/**
* @brief DO class: An argument with name that applies to an annotation.
*/

Primary key: element_hash_id: int

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

AnnotationAccessArgumentWithNameDO::getPrintableText

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

AnnotationAccessArgumentWithNameDO::getIndex

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

AnnotationAccessArgumentWithNameDO::getArgumentValueHashId

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

AnnotationAccessArgumentWithNameDO::getLocationHashId

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

AnnotationAccessArgumentWithNameDO::getAnnotationAccessHashId

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

AnnotationAccessArgumentWithNameDO::__all__

Data constraint method.

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

AnnotationAccessArgumentWithNameDO::getTypeHashId

/**
* @brief gets the type hash id of this element.
* @return int
*/
pub fn getTypeHashId(self: AnnotationAccessArgumentWithNameDO) -> int;