Representation of a filter function, that returns a value of type string.

Type Parameters

Hierarchy

  • OrderableFilterFunction<EntityT, string>
    • StringFilterFunction

Constructors

  • Creates an instance of StringFilterFunction.

    Type Parameters

    Parameters

    • functionName: string

      Name of the function that returns a string value.

    • parameters: FilterFunctionParameterType<EntityT>[]

      Representation of the parameters passed to the filter function.

    Returns StringFilterFunction<EntityT>

Properties

functionName: string

Methods

  • Creates an instance of Filter for this filter function and the given value using the operator 'eq', i.e. ==.

    Parameters

    • value: string

      Value to be used in the filter.

    Returns Filter<EntityT, any, string>

    The resulting filter.

  • Creates an instance of Filter for this filter function and the given value using the operator 'ge', i.e. >=.

    Parameters

    • value: string

      Value to be used in the filter.

    Returns Filter<EntityT, any, string>

    The resulting filter.

  • Creates an instance of Filter for this filter function and the given value using the operator 'gt', i.e. >.

    Parameters

    • value: string

      Value to be used in the filter.

    Returns Filter<EntityT, any, string>

    The resulting filter.

  • Creates an instance of Filter for this filter function and the given value using the operator 'le', i.e. <=.

    Parameters

    • value: string

      Value to be used in the filter.

    Returns Filter<EntityT, any, string>

    The resulting filter.

  • Creates an instance of Filter for this filter function and the given value using the operator 'lt', i.e. <.

    Parameters

    • value: string

      Value to be used in the filter.

    Returns Filter<EntityT, any, string>

    The resulting filter.

  • Creates an instance of Filter for this filter function and the given value using the operator 'ne', i.e. !=.

    Parameters

    • value: string

      Value to be used in the filter.

    Returns Filter<EntityT, any, string>

    The resulting filter.

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