Package io.apicurio.registry.auth
Enum AuthorizedLevel
- java.lang.Object
-
- java.lang.Enum<AuthorizedLevel>
-
- io.apicurio.registry.auth.AuthorizedLevel
-
- All Implemented Interfaces:
Serializable,Comparable<AuthorizedLevel>
public enum AuthorizedLevel extends Enum<AuthorizedLevel>
- Author:
- eric.wittmann@gmail.com
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AuthorizedLevelvalueOf(String name)Returns the enum constant of this type with the specified name.static AuthorizedLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
None
public static final AuthorizedLevel None
-
Read
public static final AuthorizedLevel Read
-
Write
public static final AuthorizedLevel Write
-
Admin
public static final AuthorizedLevel Admin
-
-
Method Detail
-
values
public static AuthorizedLevel[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AuthorizedLevel c : AuthorizedLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuthorizedLevel valueOf(String name)
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.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-