Type
/**
* @brief A java type, either a reference type or a primitive type.
*/
Primary key: id: int
schema Type {
@primary id: int
}
Type::getQualifiedName
/**
* @brief gets the name of the type.
* @return string
*/
- Parameter
self
:Type
- Return
string
pub fn getQualifiedName(self: Type) -> string;
Type::__all__
Data constraint method.
pub fn __all__(db: JavaDB) -> *Type;
Type::getName
/**
* @brief gets the name of the type.
* @return string
*/
- Parameter
self
:Type
- Return
string
pub fn getName(self: Type) -> string;