RequiresOptIn.Level
- 
            androidenum RequiresOptIn.Level : Enum 
Severity of the diagnostic that should be reported on usages of opt-in API which did not explicitly accept the opt-in aspect of that API either by:
- Propagating the opt-in aspect by annotating the usage with the marker annotation, thus becoming part of the marked opt-in API surface or
- Suppressing propagation of the opt-in aspect by annotating the usage with [OptIn] and
specifying the marker annotation    SummaryEnum ValuesERRORSpecifies that an error should be reported on incorrect usages of this opt-in API. WARNINGSpecifies that a warning should be reported on incorrect usages of this opt-in API. Public functionsRequiresOptIn.LevelReturns the enum constant of this type with the specified name. androidArray<RequiresOptIn.Level>values()Returns an array containing the constants of this enum type, in the order they're declared. androidPublic propertiesEnumEntries<RequiresOptIn.Level>Returns a representation of an immutable list of all enum entries, in the order they're declared. androidEnum ValuesERRORval RequiresOptIn.Level.ERROR: RequiresOptIn.Level Specifies that an error should be reported on incorrect usages of this opt-in API. WARNINGval RequiresOptIn.Level.WARNING: RequiresOptIn.Level Specifies that a warning should be reported on incorrect usages of this opt-in API. Public functionsvalueOffun valueOf(value: String): RequiresOptIn.Level 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.) Throws kotlin.IllegalArgumentExceptionif this enum type has no constant with the specified name valuesfun values(): Array<RequiresOptIn.Level> Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants. Public propertiesentriesval entries: EnumEntries<RequiresOptIn.Level> Returns a representation of an immutable list of all enum entries, in the order they're declared. This method may be used to iterate over the enum entries. 
