public enum Reference extends Enum<Reference>
| Modifier and Type | Method and Description |
|---|---|
static Reference |
fromString(String text) |
String |
toString() |
static Reference |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Reference[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Reference HG38
public static final Reference HG19
public static final Reference HG18
public static final Reference HG17
public static final Reference HG16
public static Reference[] values()
for (Reference c : Reference.values()) System.out.println(c);
public static Reference 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.