public enum AlleleDto extends Enum<AlleleDto>
| Modifier and Type | Method and Description |
|---|---|
static AlleleDto |
fromString(String text) |
String |
toString() |
static AlleleDto |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlleleDto[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlleleDto A
public static final AlleleDto C
public static final AlleleDto G
public static final AlleleDto T
public static final AlleleDto D
public static final AlleleDto I
public static AlleleDto[] values()
for (AlleleDto c : AlleleDto.values()) System.out.println(c);
public static AlleleDto 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 © 2016 DNAstack. All rights reserved.