abstract rtconst class std::Type
sys::Obj std::Type
Type defines the contract of an Obj by the slots its supports. Types model the inheritance relationships and provide a mapping for all the slots both inherited and declared.
- base
-
abstract Type? base()
The direct super class of this type (null for Obj). Return sys::Obj for all mixin types.
Examples:
Obj#.base => null Int#.base => sys::Num OutStream#.base => sys::Obj
- doc
-
virtual Str? doc()
Return the raw fandoc for this type or null if not available.
- facet
-
abstract Facet? facet(Type type, Bool checked := true)
Get a facet by its type. If not found on this type then return null or throw UnknownFacetErr based on check flag. See Facets Doc for details.
- facets
-
Get the list of facets defined on this type or return an empty list if no facets are defined. If looking up a facet by type, then use the
facet
method which will provide better performance. See Facets Doc for details. - field
-
Field? field(Str name, Bool checked := true)
Convenience for (Field)slot(name, checked)
- fields
-
List of the all defined fields (including inherited fields).
- find
-
static Type? find(Str qname, Bool checked := true)
Find a Type by it's qualified name "pod::Type". If the type doesn't exist and checked is false then return null, otherwise throw UnknownTypeErr.
- fits
-
Does this type implement the specified type. If true, then this type is assignable to the specified type (although the converse is not necessarily true). This method provides the same semantics as the
is
operator, but between two types rather than an instance and a type. All types (including mixin types) fitsys::Obj
.Example:
Float#.fits(Float#) => true Float#.fits(Num#) => true Float#.fits(Obj#) => true Float#.fits(Str#) => false Obj#.fits(Float#) => false
- flags
-
protected abstract Int flags()
- hasFacet
-
Return if this type has the specified facet defined.
- inheritance
-
abstract List<Type> inheritance()
Return a recursive flattened list of all the types this type inherits from. The result list always includes this type itself. The result of this method represents the complete list of types implemented by this type - instances of this type are assignable to any type in this list. All types (including mixins) will include sys::Obj in this list.
Examples:
Obj#.inheritance => [sys::Obj] Int#.inheritance => [sys::Int, sys::Num, sys::Obj]
- isAbstract
-
Bool isAbstract()
Return if this Type is abstract and cannot be instantiated. This method will always return true if the type is a mixin.
- isClass
-
Bool isClass()
Return if this Type is a class (as opposed to enum or mixin)
- isConst
-
Bool isConst()
Return if this is a const class which means instances of this class are immutable.
- isEnum
-
Bool isEnum()
Return if this Type is an Enum type.
- isFacet
-
Bool isFacet()
Return if this Type is an Facet type.
- isFinal
-
Bool isFinal()
Return if this Type is marked final which means it may not be subclassed.
- isGeneric
-
virtual Bool isGeneric()
A generic type contains slot signatures which may be parameterized - for example Map's key and value types are generic as K and V. Fantom supports three built-in generic types: List, Map, and Func. A parameterized type such as Str[] is not a generic type (all of its generic parameters have been filled in).
Examples:
Str#.isGeneric => false List#.isGeneric => true Str[]#.isGeneric => false
- isImmutable
-
virtual override Bool isImmutable()
- isInternal
-
Bool isInternal()
Return if this Type has internal protection scope.
- isMixin
-
Bool isMixin()
Return if this Type is a mixin type and cannot be instantiated.
- isNullable
-
virtual Bool isNullable()
Is this a nullable type. Nullable types can store the
null
value, but non-nullables are never null. Null types are indicated with a trailing "?". - isParameterized
-
virtual Bool isParameterized()
A parameterized type is a type which has parameterized a generic type and replaced all the generic parameter types with generic argument types. The type Str[] is a parameterized type of the generic type List (V is replaced with Str). A parameterized type always has a signature which is different from the qname.
- isPublic
-
Bool isPublic()
Return if this Type has public protection scope.
- isSynthetic
-
Bool isSynthetic()
Return if this Type was generated by the compiler.
- isVal
-
virtual Bool isVal()
Is this a value type. Fantom supports three implicit value types: Bool, Int, and Float.
- make
-
virtual Obj make(List<Obj>? args := null)
Create a new instance of this Type using the following rules:
- Call public constructor
make
with specified arguments - If no public constructor called
make
or invalid number of of required arguments, then return value ofdefVal
slot (must be static field or static method with zero params) - If no public
defVal
field, then throw Err
- Call public constructor
- method
-
Method? method(Str name, Bool checked := true)
Convenience for (Method)slot(name, checked)
- methods
-
abstract List<Method> methods()
List of the all defined methods (including inherited methods).
- mixins
-
Return the mixins directly implemented by this type.
Examples:
Obj#.mixins => [,] Buf#.mixins => [sys::InStream, sys::OutStream] OutStream#.mixins => [,]
- name
-
abstract Str name()
Simple name of the type such as "Str". For parameterized types derived from List, Map, or Func, this method always returns "List", "Map", or "Func" respectively.
Examples:
Str#.name => "Str" acme::Foo#.name => "Foo" acme::Foo[]#.name => "List"
- of
-
Get the class Type of the given instance. Also see Obj.typeof which provides the same functionality.
- pod
-
abstract Pod? pod()
Parent pod which defines this type. For parameterized types derived from List, Map, or Func, this method always returns the sys pod.
Examples:
Str#.pod => sys acme::Foo#.pod => acme acme::Foo[]#.pod => sys
- privateMake
-
new privateMake()
Private constructor.
- qname
-
abstract Str qname()
Qualified name formatted as "pod::name". For parameterized types derived from List, Map, or Func, this method always returns "sys::List", "sys::Map", or "sys::Func" respectively. If this a nullable type, the qname does not include the "?".
Examples:
Str#.qname => "sys::Str" Str?#.qname => "sys::Str" acme::Foo#.qname => "acme::Foo" acme::Foo[]#.qname => "sys::List"
- signature
-
abstract Str signature()
Return the formal signature of this type. In the case of non-parameterized types the signature is the same as qname. For parameterized types derived from List, Map, or Func the signature uses the following special syntax:
List => V[] Map => [K:V] Func => |A,B...->R|
If this is a nullable type, the signature ends with "?" such as "sys::Int?".
Examples:
Str#.signature => "sys::Str" Str?#.signature => "sys::Str?" Int[]#.signature => "sys::Int[]" Int:Str#.signature => "[sys::Int:sys::Str]" Str:Buf[]#.signature => [sys::Str:sys::Buf[]] |Float x->Bool|#.signature => "|sys::Float->sys::Bool|" |Float x, Int y|#.signature => |sys::Float,sys::Int->sys::Void|
- slot
-
abstract Slot? slot(Str name, Bool checked := true)
Lookup a slot by name. If the slot doesn't exist and checked is false then return null, otherwise throw UnknownSlotErr. Slots are any field or method in this type's scope including those defined directly by this type and those inherited from super class or mixins.
- slots
-
List of the all defined slots, both fields and methods (including inherited slots).
- toImmutable
-
virtual override Obj toImmutable()
- toNonNullable
-
virtual Type toNonNullable()
Return this type as a non-nullable type. If this type is already non-nullable then return this.
- toNullable
-
abstract Type toNullable()
Return this type as a nullable type. If this type is already nullable then return this.
- toStr
-
virtual override Str toStr()
Always return signature().
- typeof
-
static extension Type typeof(Obj obj)
Get the
Type
instance which represents this object's class. Also see`Type.of` orPod.of
.