matchPlace method

LogicalChannel matchPlace(
  1. String value
)
inherited

Matches Tweets tagged with the specified location or Twitter place ID.

Multi-word place names (“New York City”, “Palo Alto”) should be enclosed in quotes.

You can only pass a single place per place: operator.

Note: This operator will not match on Retweets, since Retweet's places are attached to the original Tweet. It will also not match on places attached to the original Tweet of a Quote Tweet.

Parameters

  • value: Place string to be matched.

Type

Availability

  • Elevated

Implementation

LogicalChannel matchPlace(final String value) => _buffer.appendOperator(
      _standaloneOperation.createPlace(value),
    );