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