public static enum AddUser.Interactiveness extends Enum<AddUser.Interactiveness>
Enum Constant and Description |
---|
INTERACTIVE |
NON_INTERACTIVE |
SILENT |
Modifier and Type | Method and Description |
---|---|
static AddUser.Interactiveness |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AddUser.Interactiveness[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AddUser.Interactiveness SILENT
public static final AddUser.Interactiveness NON_INTERACTIVE
public static final AddUser.Interactiveness INTERACTIVE
public static AddUser.Interactiveness[] values()
for (AddUser.Interactiveness c : AddUser.Interactiveness.values()) System.out.println(c);
public static AddUser.Interactiveness 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 © 2023 JBoss by Red Hat. All rights reserved.