Interface ValueBinary
- All Superinterfaces:
Expressions.Operand
,Expressions.OperandSingle
,FilterableComparisonAbsolute
- All Known Implementing Classes:
ValueBinary.Expression
OData filter expression operand of type Edm.String
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic class
OData expression for binary values. -
Field Summary
Modifier and TypeFieldDescriptionLambda to translate a String with "ISO-8859-1" encoding to byte array.Lambda to translate a byte array to String.static final ValueBinary
Null value for binary operations. -
Method Summary
Modifier and TypeMethodDescriptionstatic ValueBinary
literal
(byte[] v) Returns aValueBinary
from the givenv
.Methods inherited from interface com.sap.cloud.sdk.datamodel.odata.client.expression.Expressions.Operand
getExpression, getExpression
Methods inherited from interface com.sap.cloud.sdk.datamodel.odata.client.expression.FilterableComparisonAbsolute
equalTo, equalTo, equalToNull, in, in, in, in, notEqualTo, notEqualTo, notEqualToNull
-
Field Details
-
NULL
Null value for binary operations. -
ENCODE_TO_STRING
Lambda to translate a byte array to String. -
DECODE_FROM_STRING
Lambda to translate a String with "ISO-8859-1" encoding to byte array.
-
-
Method Details
-
literal
Returns aValueBinary
from the givenv
.- Parameters:
v
- The value to be transformed into aValueBinary
.- Returns:
- A
ValueBinary
that contains the givenv
.
-