AnnotationDeclarationParameterDefaultValueDO

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

Primary key: element_hash_id: int

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

AnnotationDeclarationParameterDefaultValueDO::getDefaultValue

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

AnnotationDeclarationParameterDefaultValueDO::__all__

Data constraint method.

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