NAME
Mouse::Meta::Class - The Mouse class metaclass
METHODS
initialize(ClassName) -> Mouse::Meta::Class
Finds or creates a Mouse::Meta::Class instance for the given ClassName. Only one instance should exist for a given class.
name -> ClassName
Returns the name of the owner class.
superclasses -> ClassNames
superclass(ClassNames)
Gets (or sets) the list of superclasses of the owner class.
add_attribute(name => spec | Mouse::Meta::Attribute)
Begins keeping track of the existing Mouse::Meta::Attribute for the owner class.
get_all_attributes -> (Mouse::Meta::Attribute)
Returns the list of all Mouse::Meta::Attribute instances associated with this class and its superclasses.
get_attribute_list -> { name => Mouse::Meta::Attribute }
This returns a list of attribute names which are defined in the local class. If you want a list of all applicable attributes for a class, use the get_all_attributes
method.
has_attribute(Name) -> Bool
Returns whether we have a Mouse::Meta::Attribute with the given name.
get_attribute Name -> Mouse::Meta::Attribute | undef
Returns the Mouse::Meta::Attribute with the given name.
linearized_isa -> [ClassNames]
Returns the list of classes in method dispatch order, with duplicates removed.
new_object(Parameters) -> Instance
Creates a new instance.
clone_object(Instance, Parameters) -> Instance
Clones the given Instance
which must be an instance governed by this metaclass.