Enum Class RequiresOptIn.Level
- All Implemented Interfaces:
Serializable, Comparable<RequiresOptIn.Level>, Constable
- Enclosing class:
RequiresOptIn
Levels used for identifying the severity of using an opt-in API without explicitly declaring it.
- Since:
- 0.1.0
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic RequiresOptIn.LevelReturns the enum constant of this class with the specified name.static RequiresOptIn.Level[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
WARNING
Specified that a warning should be reported on undeclared usage of the API.- Since:
- 0.1.0
-
ERROR
Specifies that undeclared usage of the API should be treated as error.- Since:
- 0.1.0
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-