public enum ForbiddenReason extends Enum<ForbiddenReason>
| Enum Constant and Description |
|---|
HOST_NOT_ALLOWED |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static ForbiddenReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ForbiddenReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ForbiddenReason NONE
public static final ForbiddenReason HOST_NOT_ALLOWED
public static ForbiddenReason[] values()
for (ForbiddenReason c : ForbiddenReason.values()) System.out.println(c);
public static ForbiddenReason valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020 JBoss by Red Hat. All rights reserved.