public enum KindOfArrangement extends Enum<KindOfArrangement>
Enum Constant and Description |
---|
NoArrangement
no method arrangement.
|
SequentialMethodArrangement
Single method call arrangement
|
ShuffleArrangement
random shuffle arrangement.
|
Modifier and Type | Method and Description |
---|---|
static KindOfArrangement |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KindOfArrangement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KindOfArrangement NoArrangement
public static final KindOfArrangement ShuffleArrangement
public static final KindOfArrangement SequentialMethodArrangement
public static KindOfArrangement[] values()
for (KindOfArrangement c : KindOfArrangement.values()) System.out.println(c);
public static KindOfArrangement 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 © 2013 University of Konstanz, Distributed Systems Group. All Rights Reserved.