Enum Class PlayerTag

java.lang.Object
java.lang.Enum<PlayerTag>
dev.kitteh.factions.tag.PlayerTag
All Implemented Interfaces:
Tag, Serializable, Comparable<PlayerTag>, Constable

@Internal @Obsolete @Deprecated(forRemoval=true) public enum PlayerTag extends Enum<PlayerTag> implements Tag
Deprecated, for removal: This API element is subject to removal in a future version.
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
    Gets if the Tag can be found in the given String.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Gets the Tag's string representation.
    static String
    parse(String text, FPlayer player)
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    replace(String text, FPlayer player)
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static PlayerTag
    Deprecated, for removal: This API element is subject to removal in a future version.
    Returns the enum constant of this class with the specified name.
    static PlayerTag[]
    Deprecated, for removal: This API element is subject to removal in a future version.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • GROUP

      public static final PlayerTag GROUP
      Deprecated, for removal: This API element is subject to removal in a future version.
    • LAST_SEEN

      public static final PlayerTag LAST_SEEN
      Deprecated, for removal: This API element is subject to removal in a future version.
    • PLAYER_BALANCE

      public static final PlayerTag PLAYER_BALANCE
      Deprecated, for removal: This API element is subject to removal in a future version.
    • PLAYER_POWER

      public static final PlayerTag PLAYER_POWER
      Deprecated, for removal: This API element is subject to removal in a future version.
    • PLAYER_MAXPOWER

      public static final PlayerTag PLAYER_MAXPOWER
      Deprecated, for removal: This API element is subject to removal in a future version.
    • PLAYER_KILLS

      public static final PlayerTag PLAYER_KILLS
      Deprecated, for removal: This API element is subject to removal in a future version.
    • PLAYER_DEATHS

      public static final PlayerTag PLAYER_DEATHS
      Deprecated, for removal: This API element is subject to removal in a future version.
    • PLAYER_DISPLAYNAME

      public static final PlayerTag PLAYER_DISPLAYNAME
      Deprecated, for removal: This API element is subject to removal in a future version.
    • PLAYER_NAME

      public static final PlayerTag PLAYER_NAME
      Deprecated, for removal: This API element is subject to removal in a future version.
    • PLAYER_ROLE

      public static final PlayerTag PLAYER_ROLE
      Deprecated, for removal: This API element is subject to removal in a future version.
    • TOTAL_ONLINE_VISIBLE

      public static final PlayerTag TOTAL_ONLINE_VISIBLE
      Deprecated, for removal: This API element is subject to removal in a future version.
  • Method Details

    • values

      public static PlayerTag[] values()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static PlayerTag valueOf(String name)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • parse

      public static String parse(String text, FPlayer player)
      Deprecated, for removal: This API element is subject to removal in a future version.
    • getTag

      public String getTag()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Description copied from interface: Tag
      Gets the Tag's string representation.
      Specified by:
      getTag in interface Tag
      Returns:
      tag
    • foundInString

      public boolean foundInString(String test)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Description copied from interface: Tag
      Gets if the Tag can be found in the given String.
      Specified by:
      foundInString in interface Tag
      Parameters:
      test - string to test
      Returns:
      true if the tag is found in this string
    • replace

      public String replace(String text, FPlayer player)
      Deprecated, for removal: This API element is subject to removal in a future version.