MemberKind

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

Link copied to clipboard

Signifies that the corresponding function or property is explicitly declared in the containing class.

Link copied to clipboard

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.

Link copied to clipboard

Signifies that the corresponding function or property exists in the containing class because it has been produced by interface delegation.

Link copied to clipboard

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

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard

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.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.