public static enum DomainStructure.Behavior extends Enum<DomainStructure.Behavior>
Enum Constant and Description |
---|
PRUNE_ACTIVE |
PRUNE_BOTH |
PRUNE_INACTIVE |
Modifier and Type | Method and Description |
---|---|
static DomainStructure.Behavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DomainStructure.Behavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DomainStructure.Behavior PRUNE_ACTIVE
public static final DomainStructure.Behavior PRUNE_INACTIVE
public static final DomainStructure.Behavior PRUNE_BOTH
public static DomainStructure.Behavior[] values()
for (DomainStructure.Behavior c : DomainStructure.Behavior.values()) System.out.println(c);
public static DomainStructure.Behavior 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. All rights reserved.