enum AccessResult extends java.lang.Enum<AccessResult>
| Enum Constant and Description |
|---|
ALLOWED
Represents that access is allowed.
|
DISALLOWED
Represents that access is disallowed.
|
UNKNOWN
Represents that access is unknown.
|
| Modifier and Type | Method and Description |
|---|---|
static AccessResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccessResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessResult ALLOWED
public static final AccessResult DISALLOWED
public static final AccessResult UNKNOWN
public static AccessResult[] values()
for (AccessResult c : AccessResult.values()) System.out.println(c);
public static AccessResult 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 nullCopyright © 2001-2022. All Rights Reserved.