パッケージ twitter4j.v1

インタフェース UserMentionEntity

すべてのスーパーインタフェース:
Serializable, TweetEntity

public interface UserMentionEntity extends TweetEntity, Serializable
A data interface representing one single user mention entity.
導入されたバージョン:
Twitter4J 2.1.9
  • メソッドの概要

    修飾子とタイプ
    メソッド
    説明
    int
    Returns the index of the end character of the user mention.
    long
    Returns the user id mentioned in the status.
    Returns the name mentioned in the status.
    Returns the screen name mentioned in the status.
    int
    Returns the index of the start character of the user mention.
    Returns the screen name mentioned in the status.
  • メソッドの詳細

    • getText

      String getText()
      Returns the screen name mentioned in the status. This method implementation is to meet TweetEntity interface and the behavior is equivalent to getScreenName()
      定義:
      getText インタフェース内 TweetEntity
      戻り値:
      the screen name mentioned in the status
    • getName

      String getName()
      Returns the name mentioned in the status.
      戻り値:
      the name mentioned in the status
    • getScreenName

      String getScreenName()
      Returns the screen name mentioned in the status.
      戻り値:
      the screen name mentioned in the status
    • getId

      long getId()
      Returns the user id mentioned in the status.
      戻り値:
      the user id mentioned in the status
    • getStart

      int getStart()
      Returns the index of the start character of the user mention.
      定義:
      getStart インタフェース内 TweetEntity
      戻り値:
      the index of the start character of the user mention
    • getEnd

      int getEnd()
      Returns the index of the end character of the user mention.
      定義:
      getEnd インタフェース内 TweetEntity
      戻り値:
      the index of the end character of the user mention