Enum PermissionState
- java.lang.Object
-
- java.lang.Enum<PermissionState>
-
- org.javacord.api.entity.permission.PermissionState
-
- All Implemented Interfaces:
Serializable,Comparable<PermissionState>
public enum PermissionState extends Enum<PermissionState>
This enum represents the state of aPermissionType.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PermissionStatevalueOf(String name)Returns the enum constant of this type with the specified name.static PermissionState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNSET
public static final PermissionState UNSET
The giventypeis not set.
-
ALLOWED
public static final PermissionState ALLOWED
The giventypeis allowed.
-
DENIED
public static final PermissionState DENIED
The giventypeis denied. This is only for overwritten permissions!
-
-
Method Detail
-
values
public static PermissionState[] 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 (PermissionState c : PermissionState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PermissionState 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
-
-