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