Enum VariantContextWriterBuilder.OutputType
- java.lang.Object
-
- java.lang.Enum<VariantContextWriterBuilder.OutputType>
-
- htsjdk.variant.variantcontext.writer.VariantContextWriterBuilder.OutputType
-
- All Implemented Interfaces:
Serializable
,Comparable<VariantContextWriterBuilder.OutputType>
- Enclosing class:
- VariantContextWriterBuilder
public static enum VariantContextWriterBuilder.OutputType extends Enum<VariantContextWriterBuilder.OutputType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BCF
BCF_STREAM
BLOCK_COMPRESSED_VCF
UNSPECIFIED
VCF
VCF_STREAM
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static VariantContextWriterBuilder.OutputType
valueOf(String name)
Returns the enum constant of this type with the specified name.static VariantContextWriterBuilder.OutputType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNSPECIFIED
public static final VariantContextWriterBuilder.OutputType UNSPECIFIED
-
VCF
public static final VariantContextWriterBuilder.OutputType VCF
-
BCF
public static final VariantContextWriterBuilder.OutputType BCF
-
BLOCK_COMPRESSED_VCF
public static final VariantContextWriterBuilder.OutputType BLOCK_COMPRESSED_VCF
-
VCF_STREAM
public static final VariantContextWriterBuilder.OutputType VCF_STREAM
-
BCF_STREAM
public static final VariantContextWriterBuilder.OutputType BCF_STREAM
-
-
Method Detail
-
values
public static VariantContextWriterBuilder.OutputType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (VariantContextWriterBuilder.OutputType c : VariantContextWriterBuilder.OutputType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VariantContextWriterBuilder.OutputType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-