public static enum CommonConfiguration.ControlMode extends Enum<CommonConfiguration.ControlMode>
| Enum Constant and Description |
|---|
EXCLUDE
Given class is excluded from becoming candidate for substitution.
|
INCLUDE
Given class is not excluded from becoming candidate for substitution.
|
KEEP
Given candidate class is not removed (kept) from model.
|
| Modifier and Type | Method and Description |
|---|---|
static CommonConfiguration.ControlMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CommonConfiguration.ControlMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommonConfiguration.ControlMode EXCLUDE
public static final CommonConfiguration.ControlMode INCLUDE
public static final CommonConfiguration.ControlMode KEEP
public static CommonConfiguration.ControlMode[] values()
for (CommonConfiguration.ControlMode c : CommonConfiguration.ControlMode.values()) System.out.println(c);
public static CommonConfiguration.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 © 2022–2023. All rights reserved.