java.io.Serializable
public enum StainType extends java.lang.Enum<StainType> implements java.io.Serializable
Enum Constant | Description |
---|---|
acen |
|
gneg |
|
gpos100 |
|
gpos25 |
|
gpos50 |
|
gpos75 |
|
gvar |
|
stalk |
Modifier and Type | Field | Description |
---|---|---|
java.lang.String |
type |
Modifier and Type | Method | Description |
---|---|---|
static StainType |
getStainTypeFromString(java.lang.String type) |
|
static StainType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static StainType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StainType acen
public static final StainType gneg
public static final StainType gpos100
public static final StainType gpos25
public static final StainType gpos50
public static final StainType gpos75
public static final StainType gvar
public static final StainType stalk
public static StainType[] values()
for (StainType c : StainType.values()) System.out.println(c);
public static StainType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static StainType getStainTypeFromString(java.lang.String type)