MoveVisibility

The visibility modifier describes which modules can access this module member. By default, a module member can be called only within the same module.

Entries

Link copied to clipboard

A public member can be accessed by any module.

Link copied to clipboard

A private member can be accessed in the module it is defined in.

Link copied to clipboard

A friend member can be accessed in the module it is defined in and any other module in its package that is explicitly specified in its friend list.

Link copied to clipboard

Auto generated constant for unknown enum values

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Returns a representation of an immutable list of all enum entries, in the order they're declared.

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.