public enum ReadsFormatWriteOption extends Enum<ReadsFormatWriteOption> implements WriteOption
HtsjdkReadsRdd as.| Enum Constant and Description |
|---|
BAM
BAM format
|
CRAM
CRAM format
|
SAM
SAM format
|
| Modifier and Type | Method and Description |
|---|---|
static ReadsFormatWriteOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReadsFormatWriteOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReadsFormatWriteOption BAM
public static final ReadsFormatWriteOption CRAM
public static final ReadsFormatWriteOption SAM
public static ReadsFormatWriteOption[] values()
for (ReadsFormatWriteOption c : ReadsFormatWriteOption.values()) System.out.println(c);
public static ReadsFormatWriteOption 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 © 2018–2019 Disq contributors. All rights reserved.