Options
All
  • Public
  • Public/Protected
  • All
Menu

Class AbstractCompositeExtractor

Abstract super class for ValueExtractor implementations that are based on an underlying array of ValueExtractor objects.

Hierarchy

Index

Constructors

Properties

Methods

Constructors

Protected constructor

Properties

Protected @class

@class: string

Server-side ValueExtractor implementation type identifier.

extractors

extractors: ValueExtractor[]

Methods

andThen

  • Returns a composed extractor that first applies this extractor to its input, and then applies the after extractor to the result. If evaluation of either extractor throws an exception, it is relayed to the caller of the composed extractor.

    Parameters

    • after: ValueExtractor

      the extractor to apply after this extractor is applied

    Returns ValueExtractor

    a composed extractor that first applies this extractor and then applies the after extractor

compose

  • Returns a composed extractor that first applies the before extractor to its input, and then applies this extractor to the result. If evaluation of either extractor throws an exception, it is relayed to the caller of the composed extractor.

    Parameters

    • before: ValueExtractor

      the extractor to apply before this extractor is applied

    Returns ValueExtractor

    a composed extractor that first applies the before extractor and then applies this extractor