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