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