public static enum BoidGraph.Parameter extends Enum<BoidGraph.Parameter>
| Enum Constant and Description |
|---|
AREA |
FORCES_FACTORY |
MAX_STEPS |
NORMALIZE_MODE |
RANDOM_SEED |
SLEEP_TIME |
STORE_FORCES_ATTRIBUTES |
| Modifier and Type | Method and Description |
|---|---|
static BoidGraph.Parameter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoidGraph.Parameter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoidGraph.Parameter MAX_STEPS
public static final BoidGraph.Parameter AREA
public static final BoidGraph.Parameter SLEEP_TIME
public static final BoidGraph.Parameter STORE_FORCES_ATTRIBUTES
public static final BoidGraph.Parameter NORMALIZE_MODE
public static final BoidGraph.Parameter RANDOM_SEED
public static final BoidGraph.Parameter FORCES_FACTORY
public static BoidGraph.Parameter[] values()
for (BoidGraph.Parameter c : BoidGraph.Parameter.values()) System.out.println(c);
public static BoidGraph.Parameter 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 © 2015. All rights reserved.