twitter4j
Interface UserMentionEntity

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
UserMentionEntityJSONImpl

public interface UserMentionEntity
extends java.io.Serializable

A data interface representing one single user mention entity.

Since:
Twitter4J 2.1.9
Author:
Yusuke Yamamoto - yusuke at mac.com

Method Summary
 int getEnd()
          Returns the index of the end character of the user mention.
 long getId()
          Returns the user id mentioned in the status.
 java.lang.String getName()
          Returns the name mentioned in the status.
 java.lang.String getScreenName()
          Returns the screen name mentioned in the status.
 int getStart()
          Returns the index of the start character of the user mention.
 

Method Detail

getName

java.lang.String getName()
Returns the name mentioned in the status.

Returns:
the name mentioned in the status

getScreenName

java.lang.String getScreenName()
Returns the screen name mentioned in the status.

Returns:
the screen name mentioned in the status

getId

long getId()
Returns the user id mentioned in the status.

Returns:
the user id mentioned in the status

getStart

int getStart()
Returns the index of the start character of the user mention.

Returns:
the index of the start character of the user mention

getEnd

int getEnd()
Returns the index of the end character of the user mention.

Returns:
the index of the end character of the user mention