AnnotationArrayInitializer

/**
* @brief Represents an array used as a value of an annotation element. For example: @Endorsers({"Children", "Unscrupulous dentists"})
*/

Inherit from AnnotationArrayInitializerDO

Primary key: element_hash_id: int

schema AnnotationArrayInitializer extends AnnotationArrayInitializerDO {
  @primary element_hash_id: int,
  printable_text: string,
  parent_hash_id: int,
  location_hash_id: int
}

AnnotationArrayInitializer::getParentHashId

/**
* @brief gets the parent hash id of this element.
* @return int
*/
pub fn getParentHashId(self: AnnotationArrayInitializer) -> int;

AnnotationArrayInitializer::__all__

Data constraint method.

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

AnnotationArrayInitializer::getLocation

/**
* @brief gets the location for the element.
* @return Location
*/
pub fn getLocation(self: AnnotationArrayInitializer) -> Location;

AnnotationArrayInitializer::getAnAncestor

/**
* @brief gets an ancestor of the element.
* @return ElementParent 
*/
pub fn getAnAncestor(self: AnnotationArrayInitializer) -> *ElementParent;

AnnotationArrayInitializer::getPrintableText

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

AnnotationArrayInitializer::getInitializerValue

/**
* @brief gets the initializer value for the element.
* @return Expression
*/
pub fn getInitializerValue(self: AnnotationArrayInitializer) -> *Expression;

AnnotationArrayInitializer::getLocationHashId

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

AnnotationArrayInitializer::getParent

/**
* @brief gets the parent of the element.
* @return ElementParent 
*/
pub fn getParent(self: AnnotationArrayInitializer) -> AnnotationAccessArgument;