LombokField

Inherit from Field

Primary key: element_hash_id: int

schema LombokField extends Field {
  @primary element_hash_id: int,
  name: string,
  parent_hash_id: int,
  printable_text: string,
  location_hash_id: int
}

LombokField::getDefaultValue

/**
* @brief gets the default value of the element, if any.
* @return string 
*/
pub fn getDefaultValue(self: LombokField) -> string;

LombokField::getParent

/**
* @brief gets the parent of the constructor.
* @return ClassOrInterface 
*/
pub fn getParent(self: LombokField) -> ClassOrInterface;

LombokField::getIdentifier

/**
* @brief gets the identifier of the element.
* @return Identifier 
*/
pub fn getIdentifier(self: LombokField) -> Identifier;

LombokField::getAnAncestor

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

LombokField::getAnnotation

/**
* @brief gets the annotation of the field, if any.
* @return Annotation 
*/
pub fn getAnnotation(self: LombokField) -> *Annotation;

LombokField::getName

/**
* @brief gets the name of this element.
* @return string
*/
pub fn getName(self: LombokField) -> string;

LombokField::getParentHashId

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

LombokField::getModifier

/**
* @brief gets the modifier of the constructor
* @return Modifier 
*/
pub fn getModifier(self: LombokField) -> *Modifier;

LombokField::getLocationHashId

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

LombokField::getType

/**
* @brief gets the type for the element.
* @return Type
*/
pub fn getType(self: LombokField) -> Type;

LombokField::getLombokMethodName

pub fn getLombokMethodName(self: LombokField) -> *string;

LombokField::getTypeElement

/**
* @brief gets the type element for the element.
* @return TypeElement
*/
pub fn getTypeElement(self: LombokField) -> TypeElement;

LombokField::getBelongedClass

/**
* @brief gets the contained class of the field.
* @return Class 
*/
pub fn getBelongedClass(self: LombokField) -> Class;

LombokField::getLocation

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

LombokField::__all__

Data constraint method.

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

LombokField::getPrintableText

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