public enum ControlMode extends Enum<ControlMode>
| Modifier and Type | Method and Description |
|---|---|
static ControlMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ControlMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ControlMode OPTIONAL
public static final ControlMode REQUIRED
public static ControlMode[] values()
for (ControlMode c : ControlMode.values()) System.out.println(c);
public static ControlMode 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 © 2018 JBoss by Red Hat. All Rights Reserved.