All Superinterfaces:
Expressions.Operand, Expressions.OperandSingle, FilterableComparisonAbsolute
All Known Implementing Classes:
ValueBinary.Expression

public interface ValueBinary extends Expressions.OperandSingle, FilterableComparisonAbsolute
OData filter expression operand of type Edm.String
  • Field Details

    • NULL

      @Nonnull static final ValueBinary NULL
      Null value for binary operations.
    • ENCODE_TO_STRING

      static final Function<byte[],String> ENCODE_TO_STRING
      Lambda to translate a byte array to String.
    • DECODE_FROM_STRING

      static final Function<String,byte[]> DECODE_FROM_STRING
      Lambda to translate a String with "ISO-8859-1" encoding to byte array.
  • Method Details

    • literal

      @Nonnull static ValueBinary literal(@Nonnull byte[] v)
      Returns a ValueBinary from the given v.
      Parameters:
      v - The value to be transformed into a ValueBinary.
      Returns:
      A ValueBinary that contains the given v.