public enum PeakEncoding extends Enum<PeakEncoding>
| Enum Constant and Description |
|---|
HIGH_RES_PEAK |
LOW_RES_PEAK |
NO_LOSS_PEAK |
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static PeakEncoding |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PeakEncoding[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PeakEncoding NO_LOSS_PEAK
public static final PeakEncoding HIGH_RES_PEAK
public static final PeakEncoding LOW_RES_PEAK
public static PeakEncoding[] values()
for (PeakEncoding c : PeakEncoding.values()) System.out.println(c);
public static PeakEncoding 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 nullpublic int getValue()
Copyright © 2019. All rights reserved.