| Package | Description |
|---|---|
| com.sap.cloud.sdk.odatav2.connectivity.filter |
| Modifier and Type | Method and Description |
|---|---|
static StringValue |
StringFunction.concat(ODataProperty property,
String operand)
Creates concat filter function that concatenates a property of an entity with a string operand
|
static StringValue |
StringFunction.concat(StringValue filterFunction,
String operand)
Creates concat filter function that concatenates the result of a filter function with a string operand.
|
static StringValue |
StringFunction.replace(ODataProperty property,
String find,
String replace)
Creates replace filter function that replaces a string from the
property value of an entity
|
static StringValue |
StringFunction.replace(StringValue filterFunction,
String find,
String replace)
Creates replace filter function that replaces a string from the
result of another filter function
|
static StringValue |
StringFunction.substring(ODataProperty property,
int pos)
Creates substring filter function that extracts a string starting from
a defined position in the property of an entity
|
static StringValue |
StringFunction.substring(ODataProperty property,
int pos,
int length)
Creates substring filter function that extracts a string of a defined length from
the property of an entity, starting from a specified position
|
static StringValue |
StringFunction.substring(StringValue filterFunction,
int pos)
Creates substring filter function that extracts a string starting from
a defined position in the result of another filter function
|
static StringValue |
StringFunction.substring(StringValue filterFunction,
int pos,
int length)
Creates substring filter function that extracts a string of a defined length from
the result of a filter function, starting from a specified position
|
static StringValue |
StringFunction.toLower(ODataProperty property)
Creates tolower filter function that converts the property value of an entity to lower case
|
static StringValue |
StringFunction.toLower(StringValue property)
Creates tolower filter function that converts the result of a filter function to lower case
|
static StringValue |
StringFunction.toUpper(ODataProperty property)
Creates toupper filter function that capitalizes the property value of an entity
|
static StringValue |
StringFunction.toUpper(StringValue filterFunction)
Creates toupper filter function that capitalizes the result of a filter function
|
static StringValue |
StringFunction.trim(ODataProperty property)
Creates trim filter function that trims the whitespaces from the property value of an entity
|
static StringValue |
StringFunction.trim(StringValue filterFunction)
Creates trim filter function that trims the whitespaces from the result of a filter function
|
| Modifier and Type | Method and Description |
|---|---|
static StringValue |
StringFunction.concat(StringValue filterFunction,
String operand)
Creates concat filter function that concatenates the result of a filter function with a string operand.
|
static StringValue |
StringFunction.replace(StringValue filterFunction,
String find,
String replace)
Creates replace filter function that replaces a string from the
result of another filter function
|
static StringValue |
StringFunction.substring(StringValue filterFunction,
int pos)
Creates substring filter function that extracts a string starting from
a defined position in the result of another filter function
|
static StringValue |
StringFunction.substring(StringValue filterFunction,
int pos,
int length)
Creates substring filter function that extracts a string of a defined length from
the result of a filter function, starting from a specified position
|
static StringValue |
StringFunction.toLower(StringValue property)
Creates tolower filter function that converts the result of a filter function to lower case
|
static StringValue |
StringFunction.toUpper(StringValue filterFunction)
Creates toupper filter function that capitalizes the result of a filter function
|
static StringValue |
StringFunction.trim(StringValue filterFunction)
Creates trim filter function that trims the whitespaces from the result of a filter function
|
| Constructor and Description |
|---|
StringValue(FilterFunctions.FUNCTIONS operator,
StringValue property,
Integer pos,
Integer length)
Constructs StringValue
|
StringValue(FilterFunctions.FUNCTIONS operator,
StringValue property,
ODataType operand)
Constructs StringValue
|
StringValue(FilterFunctions.FUNCTIONS operator,
StringValue property,
String find,
String replace)
Constructs StringValue
|
Copyright © 2020 SAP. All Rights Reserved.