Enum Class BitOverflowAction

java.lang.Object
java.lang.Enum<BitOverflowAction>
com.aerospike.client.operation.BitOverflowAction
All Implemented Interfaces:
Serializable, Comparable<BitOverflowAction>, Constable

public enum BitOverflowAction extends Enum<BitOverflowAction>
Action to take when bitwise add/subtract results in overflow/underflow.
  • Enum Constant Details

    • FAIL

      public static final BitOverflowAction FAIL
      Fail operation with error.
    • SATURATE

      public static final BitOverflowAction SATURATE
      If add/subtract overflows/underflows, set to max/min value. Example: MAXINT + 1 = MAXINT
    • WRAP

      public static final BitOverflowAction WRAP
      If add/subtract overflows/underflows, wrap the value. Example: MAXINT + 1 = -1
  • Field Details

    • flags

      public final int flags
  • Method Details

    • values

      public static BitOverflowAction[] 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 BitOverflowAction 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