public enum SubPillarType extends Enum<SubPillarType>
| Enum Constant and Description |
|---|
ALL
Pillars may also be affected partially, the resulting subpillar returned in random order.
|
NONE
Pillars will only be affected in their entirety.
|
SEQUENCE
Pillars may also be affected partially, and the resulting subpillar returned in an order according to a given
Comparator. |
| Modifier and Type | Method and Description |
|---|---|
static SubPillarType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SubPillarType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubPillarType NONE
public static final SubPillarType SEQUENCE
Comparator.public static final SubPillarType ALL
public static SubPillarType[] values()
for (SubPillarType c : SubPillarType.values()) System.out.println(c);
public static SubPillarType 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 © 2006–2021 JBoss by Red Hat. All rights reserved.