Member Kind
Represents kind of a function or property.
Kind indicates the origin of a declaration within a containing class. It provides information about whether a function or property was defined, generated, or something else.
Entries
Signifies that the corresponding function or property is explicitly declared in the containing class.
Signifies that the corresponding function or property exists in the containing class because a function with a suitable signature exists in a supertype. This flag is not written by the Kotlin compiler and normally cannot be encountered in binary metadata. Its effects are unspecified.
Signifies that the corresponding function or property exists in the containing class because it has been produced by interface delegation.
Signifies that the corresponding function or property exists in the containing class because it has been synthesized by the compiler or compiler plugin and has no declaration in the source code.
Properties
Functions
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
Returns an array containing the constants of this enum type, in the order they're declared.