Options
All
  • Public
  • Public/Protected
  • All
Menu

Representation of a filter function, that returns a value of an orderable type. This supports int, double and decimal values.

Type parameters

Hierarchy

Index

Constructors

  • Creates an instance of OrderableFilterFunction.

    Type parameters

    Parameters

    • functionName: string

      Name of the function that returns a numeric value

    • parameters: FilterFunctionParameterType<EntityT>[]

      Representation of the parameters passed to the filter function

    • edmType: EdmTypeShared<ODataVersionOf<EntityT>>

      Type of the returned numeric value. This influences the formatting of the returned value.

    Returns OrderableFilterFunction<EntityT, ReturnT>

Properties

edmType: EdmTypeShared<ODataVersionOf<EntityT>>
functionName: string
parameters: FilterFunctionParameterType<EntityT>[]

Methods

  • equals(value: ReturnT): Filter<EntityT, ReturnT>
  • Creates an instance of Filter for this filter function and the given value using the operator 'eq', i.e. ==.

    Parameters

    • value: ReturnT

      Value to be used in the filter

    Returns Filter<EntityT, ReturnT>

    The resulting filter

  • greaterOrEqual(value: ReturnT): Filter<EntityT, ReturnT>
  • Creates an instance of Filter for this filter function and the given value using the operator 'ge', i.e. >=.

    Parameters

    • value: ReturnT

      Value to be used in the filter

    Returns Filter<EntityT, ReturnT>

    The resulting filter

  • greaterThan(value: ReturnT): Filter<EntityT, ReturnT>
  • Creates an instance of Filter for this filter function and the given value using the operator 'gt', i.e. >.

    Parameters

    • value: ReturnT

      Value to be used in the filter

    Returns Filter<EntityT, ReturnT>

    The resulting filter

  • lessOrEqual(value: ReturnT): Filter<EntityT, ReturnT>
  • Creates an instance of Filter for this filter function and the given value using the operator 'le', i.e. <=.

    Parameters

    • value: ReturnT

      Value to be used in the filter

    Returns Filter<EntityT, ReturnT>

    The resulting filter

  • lessThan(value: ReturnT): Filter<EntityT, ReturnT>
  • Creates an instance of Filter for this filter function and the given value using the operator 'lt', i.e. <.

    Parameters

    • value: ReturnT

      Value to be used in the filter

    Returns Filter<EntityT, ReturnT>

    The resulting filter

  • notEquals(value: ReturnT): Filter<EntityT, ReturnT>
  • Creates an instance of Filter for this filter function and the given value using the operator 'ne', i.e. !=.

    Parameters

    • value: ReturnT

      Value to be used in the filter

    Returns Filter<EntityT, ReturnT>

    The resulting filter

  • toString(parentFieldNames?: string[]): string
  • deprecated

    Since v1.21.0. There will be no replacement. Let us know if you were using this functionality. Serializes the filter function into a string

    Parameters

    • Optional parentFieldNames: string[]

      Names of parents in case the function is part of a filter on a navigation property

    Returns string

    The filter function as string

    Copyright Ⓒ 2023 SAP SE or an SAP affiliate company. All rights reserved.