public enum PermissionTristate extends java.lang.Enum<PermissionTristate>
| Modifier and Type | Method and Description |
|---|---|
boolean |
booleanValue(boolean defaultValue) |
static PermissionTristate |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PermissionTristate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PermissionTristate TRUE
public static final PermissionTristate FALSE
public static final PermissionTristate UNDEFINED
public static PermissionTristate[] values()
for (PermissionTristate c : PermissionTristate.values()) System.out.println(c);
public static PermissionTristate valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic boolean booleanValue(boolean defaultValue)