public enum PlantType extends Enum<PlantType> implements IDataTransferModel
Enum Constant and Description |
---|
EMS |
NULL |
OTHER |
OVER_EXPRESSION |
REPORTER |
RNAI |
T_DNA |
Modifier and Type | Method and Description |
---|---|
static PlantType |
fromString(String value) |
String |
toString() |
static PlantType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlantType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlantType EMS
public static final PlantType OVER_EXPRESSION
public static final PlantType RNAI
public static final PlantType REPORTER
public static final PlantType T_DNA
public static final PlantType OTHER
public static final PlantType NULL
public static PlantType[] values()
for (PlantType c : PlantType.values()) System.out.println(c);
public static PlantType 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 © 2017. All rights reserved.