Package org.onosproject.core
Enum ApplicationRole
- java.lang.Object
-
- java.lang.Enum<ApplicationRole>
-
- org.onosproject.core.ApplicationRole
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ApplicationRole>
public enum ApplicationRole extends java.lang.Enum<ApplicationRole>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADMIN
Indicates that an application has an ADMIN role.UNSPECIFIED
Indicates that an application role has not been specified.USER
Indicates that an application has a USER role.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ApplicationRole
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ApplicationRole[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADMIN
public static final ApplicationRole ADMIN
Indicates that an application has an ADMIN role.
-
USER
public static final ApplicationRole USER
Indicates that an application has a USER role.
-
UNSPECIFIED
public static final ApplicationRole UNSPECIFIED
Indicates that an application role has not been specified.
-
-
Method Detail
-
values
public static ApplicationRole[] 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 (ApplicationRole c : ApplicationRole.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ApplicationRole valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-