Enum Class BvParameters.StringFormat
java.lang.Object
java.lang.Enum<BvParameters.StringFormat>
com.chemaxon.descriptors.vectors.binary.BvParameters.StringFormat
- All Implemented Interfaces:
Serializable
,Comparable<BvParameters.StringFormat>
,java.lang.constant.Constable
- Enclosing class:
- BvParameters
Fingerprint textual representation.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionRepresented as sequence of signed 32 bit integers, separated by tabs.Represented as sequence of signed 64 bit longs, separated by tabs.String representation containing only '0' and '1' characters without separation. -
Method Summary
Modifier and TypeMethodDescriptionstatic BvParameters.StringFormat
Returns the enum constant of this class with the specified name.static BvParameters.StringFormat[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
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
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.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-