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

public static enum BvParameters.StringFormat extends Enum<BvParameters.StringFormat>
Fingerprint textual representation.
  • Enum Constant Details

    • 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 Details

    • values

      public static BvParameters.StringFormat[] 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

      public static BvParameters.StringFormat valueOf(String name)
      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 name
      NullPointerException - if the argument is null