matchUsername method

LogicalChannel matchUsername(
  1. String username
)
inherited

Matches any Tweet that mentions the given username, if the username is a recognized entity.

The string passed to this method does not need to be prefixed with the symbol "@" to indicate a username. However, if you pass a string prefixed with "@", it will still work.

Parameters

  • username: Username value to be matched.

Type

Availability

  • Essential

Implementation

LogicalChannel matchUsername(final String username) => _buffer.appendOperator(
      _standaloneOperation.createUsername(username),
    );