Attributes
caseValuesSource Codeshared formal Type[] caseValues

The list of case values for this type. This omits any case type to only contain case values.

Since 1.1.0
declarationSource Codeshared formal ClassOrInterfaceDeclaration declaration

The declaration for this class or interface.

Refines Model.declaration ultimately refines Declared.declaration
extendedTypeSource Codeshared formal ClassModel<Anything,Nothing>? extendedType

The extended closed type for this class or interface. Note that the Anything type has no extended type since it is the top of the type hierarchy.

satisfiedTypesSource Codeshared formal InterfaceModel<Anything>[] satisfiedTypes

The list of closed types that this class or interface satisfies.

Inherited Attributes
Attributes inherited from: Object
Attributes inherited from: Declared
Attributes inherited from: Generic
Attributes inherited from: Model
Methods
getAttributeSource Codeshared formal Attribute<Container,Get,Set>? getAttribute<Container = Nothing, Get = Anything, Set = Nothing>(String name)

Gets an attribute by name. Returns null if not found.

See getClassOrInterface() for how the Container type parameter works.

Throws
getAttributesSource Codeshared formal Attribute<Container,Get,Set>[] getAttributes<Container = Nothing, Get = Anything, Set = Nothing>(ClosedType<Annotation>* annotationTypes)

Gets a list of attributes matching the given container and attribute type, annotated with all the specified annotations, which are declared on this type or inherited.

Since 1.1.0
getClassSource Codeshared formal MemberClass<Container,Type,Arguments>? getClass<Container = Nothing, Type = Anything, Arguments = Nothing>(String name, ClosedType<Anything>* types)

Gets a member class by name. Returns null if not found.

See getClassOrInterface() for how the Container type parameter works.

Throws
  • IncompatibleTypeException

    If the specified Type or Arguments type arguments are not compatible with the actual result, or if the corresponding member is not a MemberClass.

  • TypeApplicationException

    If the specified closed type argument values are not compatible with the actual result's type parameters.

getClassOrInterfaceSource Codeshared formal Member<Container,Kind>? getClassOrInterface<Container = Nothing, Kind = ClassOrInterface<Anything>>(String name, ClosedType<Anything>* types)
given Kind satisfies ClassOrInterface<Anything>

Gets a member class or interface by name. Returns null if not found.

The Container type parameter acts as a selector for the container of the member:

  • If it is the current type or a subtype, and the attribute exists in this type, then the attribute of the current type is returned. For example, looking up 'unit' in Integer with Integer as Container will return Integer.unit.
  • If it is a supertype of this type, and that supertype defines this attribute, then that supertype's attribute is returned. For example, looking up 'hash' in Integer with Object as Container will return Object.hash.
  • If it is a type that is disjoint from this type, the attribute will be looked up in the common supertype between that type and this type. For example, looking up 'hash' in Integer with String as Container will return Object.hash.
  • If the common supertype between this type and the Container type has no such member, null is returned.
Throws
getClassesSource Codeshared formal MemberClass<Container,Type,Arguments>[] getClasses<Container = Nothing, Type = Anything, Arguments = Nothing>(ClosedType<Annotation>* annotationTypes)

Returns the list of shared member classes on this class or interface and annotated with all the specified annotations. This includes inherited member classes but not unshared member classes.

Since 1.1.0
getDeclaredAttributeSource Codeshared formal Attribute<Container,Get,Set>? getDeclaredAttribute<Container = Nothing, Get = Anything, Set = Nothing>(String name)

Gets an attribute by name. Returns null if not found.

See getDeclaredClassOrInterface() for how the Container type parameter works.

Throws
getDeclaredAttributesSource Codeshared formal Attribute<Container,Get,Set>[] getDeclaredAttributes<Container = Nothing, Get = Anything, Set = Nothing>(ClosedType<Annotation>* annotationTypes)

Gets a list of attributes matching the given container and attribute type, annotated with all the specified annotations, which are directly declared on this type.

Since 1.1.0
getDeclaredClassSource Codeshared formal MemberClass<Container,Type,Arguments>? getDeclaredClass<Container = Nothing, Type = Anything, Arguments = Nothing>(String name, ClosedType<Anything>* types)

Gets a member class by name. Returns null if not found.

See getDeclaredClassOrInterface() for how the Container type parameter works.

Throws
  • IncompatibleTypeException

    If the specified Container, Type or Arguments type arguments are not compatible with the actual result, or if the corresponding member is not a MemberClass.

  • TypeApplicationException

    If the specified closed type argument values are not compatible with the actual result's type parameters.

getDeclaredClassOrInterfaceSource Codeshared formal Member<Container,Kind>? getDeclaredClassOrInterface<Container = Nothing, Kind = ClassOrInterface<Anything>>(String name, ClosedType<Anything>* types)
given Kind satisfies ClassOrInterface<Anything>

Gets a member class or interface by name. Returns null if not found.

The Container type parameter acts as a selector for the container of the member:

  • If it is the current type or a subtype, and the attribute exists in this type, then the attribute of the current type is returned. For example, looking up 'unit' in Integer with Integer as Container will return Integer.unit.
  • If it is a supertype of this type, or a type that is disjoint from this type, an IncompatibleTypeException will be thrown.
  • If this type has no such member, null is returned.
Throws
  • IncompatibleTypeException

    If the specified Container or Kind type arguments are not compatible with the actual result.

  • TypeApplicationException

    If the specified closed type argument values are not compatible with the actual result's type parameters.

getDeclaredClassesSource Codeshared formal MemberClass<Container,Type,Arguments>[] getDeclaredClasses<Container = Nothing, Type = Anything, Arguments = Nothing>(ClosedType<Annotation>* annotationTypes)

Gets a list of member classes matching the given container, return and parameter types, annotated with all the specified annotations, which are directly declared on this type.

Since 1.1.0
getDeclaredInterfaceSource Codeshared formal MemberInterface<Container,Type>? getDeclaredInterface<Container = Nothing, Type = Anything>(String name, ClosedType<Anything>* types)

Gets a member interface by name. Returns null if not found.

See getDeclaredClassOrInterface() for how the Container type parameter works.

Throws
  • IncompatibleTypeException

    If the specified Container or Type type arguments are not compatible with the actual result, or if the corresponding member is not a MemberInterface.

  • TypeApplicationException

    If the specified closed type argument values are not compatible with the actual result's type parameters.

getDeclaredInterfacesSource Codeshared formal MemberInterface<Container,Type>[] getDeclaredInterfaces<Container = Nothing, Type = Anything>(ClosedType<Annotation>* annotationTypes)

Returns the list of member interfaces directly declared on this class or interface and annotated with all the specified annotations. This includes unshared member interfaces but not inherited member interfaces.

Since 1.1.0
getDeclaredMethodSource Codeshared formal Method<Container,Type,Arguments>? getDeclaredMethod<Container = Nothing, Type = Anything, Arguments = Nothing>(String name, ClosedType<Anything>* types)

Gets a method by name. Returns null if not found.

See getDeclaredClassOrInterface() for how the Container type parameter works.

Throws
  • IncompatibleTypeException

    If the specified Container, Type or Arguments type arguments are not compatible with the actual result.

  • TypeApplicationException

    If the specified closed type argument values are not compatible with the actual result's type parameters.

getDeclaredMethodsSource Codeshared formal Method<Container,Type,Arguments>[] getDeclaredMethods<Container = Nothing, Type = Anything, Arguments = Nothing>(ClosedType<Annotation>* annotationTypes)

Gets a list of methods matching the given container, return and parameter types, annotated with all the specified annotations, which are directly declared on this type.

Since 1.1.0
getInterfaceSource Codeshared formal MemberInterface<Container,Type>? getInterface<Container = Nothing, Type = Anything>(String name, ClosedType<Anything>* types)

Gets a member interface by name. Returns null if not found.

See getClassOrInterface() for how the Container type parameter works.

Throws
  • IncompatibleTypeException

    If the specified Type type argument is not compatible with the actual result, or if the corresponding member is not a MemberInterface.

  • TypeApplicationException

    If the specified closed type argument values are not compatible with the actual result's type parameters.

getInterfacesSource Codeshared formal MemberInterface<Container,Type>[] getInterfaces<Container = Nothing, Type = Anything>(ClosedType<Annotation>* annotationTypes)

Returns the list of shared member interfaces on this class or interface and annotated with all the specified annotations. This includes inherited member interfaces but not unshared member interfaces.

Since 1.1.0
getMethodSource Codeshared formal Method<Container,Type,Arguments>? getMethod<Container = Nothing, Type = Anything, Arguments = Nothing>(String name, ClosedType<Anything>* types)

Gets a method by name. Returns null if not found.

See getClassOrInterface() for how the Container type parameter works.

Throws
  • IncompatibleTypeException

    If the specified Type or Arguments type arguments are not compatible with the actual result.

  • TypeApplicationException

    If the specified closed type argument values are not compatible with the actual result's type parameters.

getMethodsSource Codeshared formal Method<Container,Type,Arguments>[] getMethods<Container = Nothing, Type = Anything, Arguments = Nothing>(ClosedType<Annotation>* annotationTypes)

Gets a list of methods matching the given container, return and parameter types, annotated with all the specified annotations, which are declared on this type or inherited.

Since 1.1.0
Inherited Methods
Methods inherited from: Object
Methods inherited from: ClosedType<Target>