Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ABLFilter

Utility class that can be used to parse the JSDO abl filter string in a structured filter object.

Hierarchy

  • ABLFilter

Index

Methods

Static getCompareOperator

  • getCompareOperator(op: string): CompareOperator
  • Return the compare operator that matches the string value passed.

    Parameters

    • op: string

      The filter operator string.

    Returns CompareOperator

Static getGroupOperator

  • getGroupOperator(op: string): GroupOperator
  • Return the group operator that matches the string value passed.

    Parameters

    • op: string

      The filter operator string.

    Returns GroupOperator

Static getStringOperator

  • getStringOperator(op: string): StringOperator
  • Return the string operator that matches the string value passed.

    Parameters

    • op: string

      The filter operator string.

    Returns StringOperator

Static parse

  • parse(ablFilter: string): Filter
  • Parse the abl filter string passed in a structured filter object.

    Parameters

    • ablFilter: string

      The 4GL filter condition.

    Returns Filter