InnerClass
/**
* @brief Non-static nested classes are called inner classes.
*/
Inherit from NestedClass
Primary key: element_hash_id: int
schema InnerClass extends NestedClass {
@primary element_hash_id: int,
qualified_name: string,
identifier_hash_id: int,
location_hash_id: int,
parent_hash_id: int
}
InnerClass::getAnAncestorClass
/**
* @brief gets all ancestor classes of the element.
* @return Class
*/
- Parameter
self
:InnerClass
- Return
*Class
pub fn getAnAncestorClass(self: InnerClass) -> *Class;
InnerClass::getAnAncestor
/**
* @brief gets an ancestor of the element.
* @return ElementParent
*/
- Parameter
self
:InnerClass
- Return
*ElementParent
pub fn getAnAncestor(self: InnerClass) -> *ElementParent;
InnerClass::getLocationHashId
/**
* @brief gets the location hash id of this element.
* @return int
*/
- Parameter
self
:InnerClass
- Return
int
pub fn getLocationHashId(self: InnerClass) -> int;
InnerClass::getAllFields
/**
* @brief gets all fields of the class.
* @return Field
*/
- Parameter
self
:InnerClass
- Return
*Field
pub fn getAllFields(self: InnerClass) -> *Field;
InnerClass::getSize
/**
* @brief gets the size information of the class element.
* @return NumberOfLines
*/
- Parameter
self
:InnerClass
- Return
NumberOfLines
pub fn getSize(self: InnerClass) -> NumberOfLines;
InnerClass::getImplementsInterface
/**
* @brief gets the implemented interface of the class element.
* @return Interface
*/
- Parameter
self
:InnerClass
- Return
*Interface
pub fn getImplementsInterface(self: InnerClass) -> *Interface;
InnerClass::getSuperClass
/**
* @brief gets the super class of the element.
* @return Class
*/
- Parameter
self
:InnerClass
- Return
Class
pub fn getSuperClass(self: InnerClass) -> Class;
InnerClass::getIdentifier
/**
* @brief gets the identifier of the class name.
* @return Identifier
*/
- Parameter
self
:InnerClass
- Return
Identifier
pub fn getIdentifier(self: InnerClass) -> Identifier;
InnerClass::getContainingFile
/**
* @brief gets the containing file of the class element.
* @return File
*/
- Parameter
self
:InnerClass
- Return
File
pub fn getContainingFile(self: InnerClass) -> File;
InnerClass::getLocation
/**
* @brief gets the location for the element.
* @return Location
*/
- Parameter
self
:InnerClass
- Return
Location
pub fn getLocation(self: InnerClass) -> Location;
InnerClass::__all__
Data constraint method.
- Parameter
db
:JavaDB
- Return
*InnerClass
pub fn __all__(db: JavaDB) -> *InnerClass;
InnerClass::getAnnotation
/**
* @brief gets the annotation of the class, if any.
* @return Annotation
*/
- Parameter
self
:InnerClass
- Return
*Annotation
pub fn getAnnotation(self: InnerClass) -> *Annotation;
InnerClass::getAnAscentantClassOrInterface
/**
* @brief gets any ascentant class or interface of the class element.
* @return ClassOrInterface
*/
- Parameter
self
:InnerClass
- Return
*ClassOrInterface
pub fn getAnAscentantClassOrInterface(self: InnerClass) -> *ClassOrInterface;
InnerClass::getIdentifierHashId
/**
* @brief gets the identifier hash id of this element.
* @return int
*/
- Parameter
self
:InnerClass
- Return
int
pub fn getIdentifierHashId(self: InnerClass) -> int;
InnerClass::getParentHashId
/**
* @brief gets the parent hash id of this element.
* @return int
*/
- Parameter
self
:InnerClass
- Return
int
pub fn getParentHashId(self: InnerClass) -> int;
InnerClass::getModifier
/**
* @brief gets the modifier of the Class
* @return Modifier
*/
- Parameter
self
:InnerClass
- Return
*Modifier
pub fn getModifier(self: InnerClass) -> *Modifier;
InnerClass::getSuperOrImplementsType
/**
* @brief gets the super class or implemented interface of the class element.
* @return ClassOrInterface
*/
- Parameter
self
:InnerClass
- Return
*ClassOrInterface
pub fn getSuperOrImplementsType(self: InnerClass) -> *ClassOrInterface;
InnerClass::getQualifiedName
/**
* @brief gets the qualified name of this element.
* @return string
*/
- Parameter
self
:InnerClass
- Return
string
pub fn getQualifiedName(self: InnerClass) -> string;
InnerClass::getAllMethods
/**
* @brief gets all methods of the class element.
* @return Method
*/
- Parameter
self
:InnerClass
- Return
*Method
pub fn getAllMethods(self: InnerClass) -> *Method;
InnerClass::getParent
/**
* @brief gets the parent of the method.
* @return ElementParent
*/
- Parameter
self
:InnerClass
- Return
ElementParent
pub fn getParent(self: InnerClass) -> ElementParent;
InnerClass::getName
/**
* @brief gets the name of the class.
* @return string
*/
- Parameter
self
:InnerClass
- Return
string
pub fn getName(self: InnerClass) -> string;
InnerClass::getPackage
/**
* @brief gets the package of the class element.
* @return Package
*/
- Parameter
self
:InnerClass
- Return
Package
pub fn getPackage(self: InnerClass) -> Package;