public enum AcSpeciesType extends Enum<AcSpeciesType>
| Enum Constant and Description |
|---|
Feedback |
Functional |
Input |
Output |
| Modifier and Type | Method and Description |
|---|---|
static AcSpeciesType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AcSpeciesType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AcSpeciesType Input
public static final AcSpeciesType Output
public static final AcSpeciesType Feedback
public static final AcSpeciesType Functional
public static AcSpeciesType[] values()
for (AcSpeciesType c : AcSpeciesType.values()) System.out.println(c);
public static AcSpeciesType 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 © 2019. All Rights Reserved.