AnnotationDeclarationParameterDefaultValue

/**
* @brief Default value for an annotation parameter, if any.
*/

Inherit from AnnotationDeclarationParameterDefaultValueDO

Primary key: element_hash_id: int

schema AnnotationDeclarationParameterDefaultValue extends AnnotationDeclarationParameterDefaultValueDO {
  @primary element_hash_id: int,
  default_value: string
}

AnnotationDeclarationParameterDefaultValue::getDefaultValue

/**
* @brief gets the default value of this element.
* @return string
*/
pub fn getDefaultValue(self: AnnotationDeclarationParameterDefaultValue) -> string;

AnnotationDeclarationParameterDefaultValue::__all__

Data constraint method.

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

AnnotationDeclarationParameterDefaultValue::getLocation

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