Enum TextIdentifier

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<TextIdentifier>

    public enum TextIdentifier
    extends java.lang.Enum<TextIdentifier>
    • Enum Constant Detail

      • NAME_TOO_LONG_FRIENDS

        public static final TextIdentifier NAME_TOO_LONG_FRIENDS
      • HIDE_PLAYERS_MENU

        public static final TextIdentifier HIDE_PLAYERS_MENU
      • FRIEND_REQUEST_MENU

        public static final TextIdentifier FRIEND_REQUEST_MENU
      • FRIENDSHIP_INVITATION_NAME

        public static final TextIdentifier FRIENDSHIP_INVITATION_NAME
      • ACCEPT_FRIEND_REQUEST_ITEM

        public static final TextIdentifier ACCEPT_FRIEND_REQUEST_ITEM
      • NEXT_PAGE_BUTTON_ITEM

        public static final TextIdentifier NEXT_PAGE_BUTTON_ITEM
      • PREVIOUS_PAGE_BUTTON_NAME_ITEM

        public static final TextIdentifier PREVIOUS_PAGE_BUTTON_NAME_ITEM
      • WANT_RECEIVE_MESSAGES_ITEM

        public static final TextIdentifier WANT_RECEIVE_MESSAGES_ITEM
      • INVITE_INTO_PARTY_ITEM

        public static final TextIdentifier INVITE_INTO_PARTY_ITEM
      • DELETE_FRIEND_ITEM

        public static final TextIdentifier DELETE_FRIEND_ITEM
      • HIDE_PLAYERS_ITEM

        public static final TextIdentifier HIDE_PLAYERS_ITEM
      • DENY_FRIEND_REQUEST_ITEM

        public static final TextIdentifier DENY_FRIEND_REQUEST_ITEM
      • SHOW_FRIENDS_AND_PEOPLE_WITH_PERMISSION_ITEM

        public static final TextIdentifier SHOW_FRIENDS_AND_PEOPLE_WITH_PERMISSION_ITEM
      • SHOW_ONLY_YOUR_FRIENDS_ITEM

        public static final TextIdentifier SHOW_ONLY_YOUR_FRIENDS_ITEM
      • SHOW_ONLY_PEOPLE_FROM_THE_SERVER_ITEM

        public static final TextIdentifier SHOW_ONLY_PEOPLE_FROM_THE_SERVER_ITEM
      • YOU_RECEIVE_FRIEND_REQUESTS_ITEM

        public static final TextIdentifier YOU_RECEIVE_FRIEND_REQUESTS_ITEM
      • SHOW_NOBODY_ITEM

        public static final TextIdentifier SHOW_NOBODY_ITEM
      • YOU_RECEIVE_NO_FRIEND_REQUESTS_ITEM

        public static final TextIdentifier YOU_RECEIVE_NO_FRIEND_REQUESTS_ITEM
      • YOU_RECEIVE_PARTY_INVITATIONS_ITEM

        public static final TextIdentifier YOU_RECEIVE_PARTY_INVITATIONS_ITEM
      • YOU_RECEIVE_NO_PARTY_INVITATIONS_ITEM

        public static final TextIdentifier YOU_RECEIVE_NO_PARTY_INVITATIONS_ITEM
      • YOUR_STATUS_WILL_BE_SHOWN_ONLINE_ITEM

        public static final TextIdentifier YOUR_STATUS_WILL_BE_SHOWN_ONLINE_ITEM
      • YOUR_STATUS_WILL_BE_SHOWN_OFFLINE_ITEM

        public static final TextIdentifier YOUR_STATUS_WILL_BE_SHOWN_OFFLINE_ITEM
      • JUMP_ALLOWED_ITEM

        public static final TextIdentifier JUMP_ALLOWED_ITEM
      • YOU_RECEIVE_MESSAGES_ITEM

        public static final TextIdentifier YOU_RECEIVE_MESSAGES_ITEM
      • YOU_RECEIVE_NO_MESSAGES_ITEM

        public static final TextIdentifier YOU_RECEIVE_NO_MESSAGES_ITEM
      • WANT_TO_BE_SHOWN_AS_ONLINE_ITEM

        public static final TextIdentifier WANT_TO_BE_SHOWN_AS_ONLINE_ITEM
      • SHOULD_FRIENDS_BE_ABLE_TO_JUMP_TO_YOU_ITEM

        public static final TextIdentifier SHOULD_FRIENDS_BE_ABLE_TO_JUMP_TO_YOU_ITEM
      • WANT_RECEIVE_PARTY_INVITATIONS_ITEM

        public static final TextIdentifier WANT_RECEIVE_PARTY_INVITATIONS_ITEM
      • HIDE_INVENTORY_PLACE_HOLDER

        public static final TextIdentifier HIDE_INVENTORY_PLACE_HOLDER
      • FRIEND_DETAIL_VIEW_PLACE_HOLDER

        public static final TextIdentifier FRIEND_DETAIL_VIEW_PLACE_HOLDER
      • FRIEND_ACCEPT_MENU_PLACEHOLDER

        public static final TextIdentifier FRIEND_ACCEPT_MENU_PLACEHOLDER
      • WANT_RECEIVE_FRIEND_REQUESTS_ITEM

        public static final TextIdentifier WANT_RECEIVE_FRIEND_REQUESTS_ITEM
      • HOW_TO_CREATE_A_PARTY

        public static final TextIdentifier HOW_TO_CREATE_A_PARTY
      • PARTY_MENU_PLACEHOLDER

        public static final TextIdentifier PARTY_MENU_PLACEHOLDER
      • MAKE_NEW_PARTY_LEADER

        public static final TextIdentifier MAKE_NEW_PARTY_LEADER
      • PARTY_MEMBER_DETAIL_VIEW_PREFIX

        public static final TextIdentifier PARTY_MEMBER_DETAIL_VIEW_PREFIX
      • PARTY_DETAIL_VIEW_PLACE_HOLDER

        public static final TextIdentifier PARTY_DETAIL_VIEW_PLACE_HOLDER
      • MENU_BAR_PLACEHOLDER

        public static final TextIdentifier MENU_BAR_PLACEHOLDER
      • NAME_TOO_LONG_PARTY

        public static final TextIdentifier NAME_TOO_LONG_PARTY
      • NO_PENDING_FRIEND_REQUEST

        public static final TextIdentifier NO_PENDING_FRIEND_REQUEST
      • POST_FRIEND_PAGE

        public static final TextIdentifier POST_FRIEND_PAGE
      • OPEN_FRIEND_MENU

        public static final TextIdentifier OPEN_FRIEND_MENU
    • Method Detail

      • values

        public static TextIdentifier[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (TextIdentifier c : TextIdentifier.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static TextIdentifier valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null