Enum BvParameters.StringFormat
- java.lang.Object
-
- java.lang.Enum<BvParameters.StringFormat>
-
- com.chemaxon.descriptors.vectors.binary.BvParameters.StringFormat
-
- All Implemented Interfaces:
Serializable
,Comparable<BvParameters.StringFormat>
- Enclosing class:
- BvParameters
public static enum BvParameters.StringFormat extends Enum<BvParameters.StringFormat>
Fingerprint textual representation.
-
-
Enum Constant Summary
Enum Constants Enum Constant 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.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
STRICT_BINARY_STRING
public static final BvParameters.StringFormat STRICT_BINARY_STRING
String representation containing only '0' and '1' characters without separation.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.
-
PACKED_INT_TABSEP
public static final BvParameters.StringFormat PACKED_INT_TABSEP
Represented as sequence of signed 32 bit integers, separated by tabs.
-
PACKED_LONG_TABSEP
public static final BvParameters.StringFormat PACKED_LONG_TABSEP
Represented as sequence of signed 64 bit longs, separated by tabs.
-
-
Method Detail
-
values
public static BvParameters.StringFormat[] 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 (BvParameters.StringFormat c : BvParameters.StringFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BvParameters.StringFormat 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
-
-