public static enum SetPartitionIterator.Flag extends Enum<SetPartitionIterator.Flag>
| Enum Constant and Description |
|---|
GROUP_ORDER_MATTERS |
| Modifier and Type | Method and Description |
|---|---|
static SetPartitionIterator.Flag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SetPartitionIterator.Flag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SetPartitionIterator.Flag GROUP_ORDER_MATTERS
public static SetPartitionIterator.Flag[] values()
for (SetPartitionIterator.Flag c : SetPartitionIterator.Flag.values()) System.out.println(c);
public static SetPartitionIterator.Flag 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 null
jataylor@hairyfatguy.com