matchEntity method

LogicalChannel matchEntity(
  1. String value
)
inherited

Matches Tweets with a specific entity string value.

To learn more about this operator, please visit page on annotations.

You can only pass a single entity per this operator.

Parameters

  • value: Entity value to be matched.

Type

Availability

  • Essential

Implementation

LogicalChannel matchEntity(final String value) => _buffer.appendOperator(
      _standaloneOperation.createEntity(value),
    );