public static enum BvParameters.StringFormat extends Enum<BvParameters.StringFormat>
Enum Constant and Description |
---|
PACKED_INT_TABSEP
Represented as sequence of signed 32 bit integers, separated by tabs.
|
PACKED_LONG_TABSEP
Represented as sequence of signed 64 bit longs, separated by tabs.
|
STRICT_BINARY_STRING
String representation containing only '0' and '1' characters without separation.
|
Modifier and Type | Method and Description |
---|---|
static BvParameters.StringFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BvParameters.StringFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BvParameters.StringFormat STRICT_BINARY_STRING
First character of the string corresponds to the lowest bit index. The binary string format can be created from the packed numeric formats by concatenating their reversed binary representation.
public static final BvParameters.StringFormat PACKED_INT_TABSEP
public static final BvParameters.StringFormat PACKED_LONG_TABSEP
public static BvParameters.StringFormat[] values()
for (BvParameters.StringFormat c : BvParameters.StringFormat.values()) System.out.println(c);
public static BvParameters.StringFormat 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 null