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
*/
- Parameter
self
:LombokField
- Return
string
pub fn getDefaultValue(self: LombokField) -> string;
LombokField::getParent
/**
* @brief gets the parent of the constructor.
* @return ClassOrInterface
*/
- Parameter
self
:LombokField
- Return
ClassOrInterface
pub fn getParent(self: LombokField) -> ClassOrInterface;
LombokField::getIdentifier
/**
* @brief gets the identifier of the element.
* @return Identifier
*/
- Parameter
self
:LombokField
- Return
Identifier
pub fn getIdentifier(self: LombokField) -> Identifier;
LombokField::getAnAncestor
/**
* @brief gets an ancestor of the element.
* @return ElementParent
*/
- Parameter
self
:LombokField
- Return
*ElementParent
pub fn getAnAncestor(self: LombokField) -> *ElementParent;
LombokField::getAnnotation
/**
* @brief gets the annotation of the field, if any.
* @return Annotation
*/
- Parameter
self
:LombokField
- Return
*Annotation
pub fn getAnnotation(self: LombokField) -> *Annotation;
LombokField::getName
/**
* @brief gets the name of this element.
* @return string
*/
- Parameter
self
:LombokField
- Return
string
pub fn getName(self: LombokField) -> string;
LombokField::getParentHashId
/**
* @brief gets the parent hash id of this element.
* @return int
*/
- Parameter
self
:LombokField
- Return
int
pub fn getParentHashId(self: LombokField) -> int;
LombokField::getModifier
/**
* @brief gets the modifier of the constructor
* @return Modifier
*/
- Parameter
self
:LombokField
- Return
*Modifier
pub fn getModifier(self: LombokField) -> *Modifier;
LombokField::getLocationHashId
/**
* @brief gets the location hash id of this element.
* @return int
*/
- Parameter
self
:LombokField
- Return
int
pub fn getLocationHashId(self: LombokField) -> int;
LombokField::getType
/**
* @brief gets the type for the element.
* @return Type
*/
- Parameter
self
:LombokField
- Return
Type
pub fn getType(self: LombokField) -> Type;
LombokField::getLombokMethodName
- Parameter
self
:LombokField
- Return
*string
pub fn getLombokMethodName(self: LombokField) -> *string;
LombokField::getTypeElement
/**
* @brief gets the type element for the element.
* @return TypeElement
*/
- Parameter
self
:LombokField
- Return
TypeElement
pub fn getTypeElement(self: LombokField) -> TypeElement;
LombokField::getBelongedClass
/**
* @brief gets the contained class of the field.
* @return Class
*/
- Parameter
self
:LombokField
- Return
Class
pub fn getBelongedClass(self: LombokField) -> Class;
LombokField::getLocation
/**
* @brief gets the location of the element.
* @return Location
*/
- Parameter
self
:LombokField
- Return
Location
pub fn getLocation(self: LombokField) -> Location;
LombokField::__all__
Data constraint method.
- Parameter
db
:JavaDB
- Return
*LombokField
pub fn __all__(db: JavaDB) -> *LombokField;
LombokField::getPrintableText
/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
- Parameter
self
:LombokField
- Return
string
pub fn getPrintableText(self: LombokField) -> string;