Package htsjdk.tribble.index
Enum IndexFactory.IndexBalanceApproach
- java.lang.Object
-
- java.lang.Enum<IndexFactory.IndexBalanceApproach>
-
- htsjdk.tribble.index.IndexFactory.IndexBalanceApproach
-
- All Implemented Interfaces:
Serializable
,Comparable<IndexFactory.IndexBalanceApproach>
- Enclosing class:
- IndexFactory
public static enum IndexFactory.IndexBalanceApproach extends Enum<IndexFactory.IndexBalanceApproach>
We can optimize index-file-creation for different factors. As of this writing, those are index-file size or seeking time.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FOR_SEEK_TIME
FOR_SIZE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IndexFactory.IndexBalanceApproach
valueOf(String name)
Returns the enum constant of this type with the specified name.static IndexFactory.IndexBalanceApproach[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FOR_SIZE
public static final IndexFactory.IndexBalanceApproach FOR_SIZE
-
FOR_SEEK_TIME
public static final IndexFactory.IndexBalanceApproach FOR_SEEK_TIME
-
-
Method Detail
-
values
public static IndexFactory.IndexBalanceApproach[] 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 (IndexFactory.IndexBalanceApproach c : IndexFactory.IndexBalanceApproach.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IndexFactory.IndexBalanceApproach 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
-
-