reflect.enum.Type
An enum-kind view of a `type` value. Users never construct this class.
Signature
class reflect.enum.TypeAn enum-kind view of a type value. Users never construct this class.
Source:<builtin>/reflect/ns_enum/enum.bamlbytes 1220–1983
Fields
_ty
reflect.TypeThe wrapped type value. Private by invariant: reflection natives are
its only readers, and each kind method panics if the held type no longer
classifies as this view's kind.
Instance methods
The enum declaration's own schema metadata.
The enum's variants, in declaration order.
Implementations
reflect.AnyClass for T
Instance methods
The class declaration's schema metadata, or empty metadata when the runtime type is not a class.
Read a field as T. A missing field returns null; use has_field to
distinguish that case from a present field whose value is null.
Return a value-bound field handle, or null when no such field exists.
has_field
(self, name: string) -> boolWhether this value's runtime class declares a field called name.
false when the runtime type is not a class.
Reflected fields bound to this value for Field.value<T>().
name
(self) -> stringThe rendered name of this value's concrete runtime type.
This value's concrete runtime type.
Source:<builtin>/reflect/reflect.bamlbytes 6092–6122
reflect.TypeView for reflect.enum.Type
Instance methods
Source:<builtin>/reflect/ns_enum/enum.bamlbytes 1461–1637