public enum ReadsWriteFormat extends java.lang.Enum<ReadsWriteFormat>
Enum Constant and Description |
---|
ADAM
Write reads to a sharded set of ADAM-formatted Parquet files
|
SHARDED
Write reads to a sharded set of BAM files
|
SINGLE
Write reads to a single BAM file
|
Modifier and Type | Method and Description |
---|---|
static ReadsWriteFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReadsWriteFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReadsWriteFormat SINGLE
public static final ReadsWriteFormat SHARDED
public static final ReadsWriteFormat ADAM
public static ReadsWriteFormat[] values()
for (ReadsWriteFormat c : ReadsWriteFormat.values()) System.out.println(c);
public static ReadsWriteFormat valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null