Enum Class Dev.Category

java.lang.Object
java.lang.Enum<Dev.Category>
games.stendhal.server.core.config.annotations.Dev.Category
All Implemented Interfaces:
Serializable, Comparable<Dev.Category>, Constable
Enclosing class:
Dev

public static enum Dev.Category extends Enum<Dev.Category>
a category for building block
Author:
hendrik
  • Enum Constant Details

    • CHAT

      public static final Dev.Category CHAT
      chatting, emoting and private messages
    • ENVIRONMENT

      public static final Dev.Category ENVIRONMENT
      environment such as java system properties
    • LOCATION

      public static final Dev.Category LOCATION
      location in the world, zones
    • LOGIC

      public static final Dev.Category LOGIC
      logic true, false, and, or, not
    • IGNORE

      public static final Dev.Category IGNORE
      do not show this building block in the designer
    • OUTFIT

      public static final Dev.Category OUTFIT
      player outfits
    • QUEST_SLOT

      public static final Dev.Category QUEST_SLOT
      quest slot memory
    • ITEMS_LOOTED

      public static final Dev.Category ITEMS_LOOTED
      items looted by the player in the past
    • ITEMS_OWNED

      public static final Dev.Category ITEMS_OWNED
      items owned by the player right now
    • ITEMS_PRODUCER

      public static final Dev.Category ITEMS_PRODUCER
      item producer
    • STATS

      public static final Dev.Category STATS
      stats of the player, e. g. level, karma
    • KILLS

      public static final Dev.Category KILLS
      kills of creatures
    • TIME

      public static final Dev.Category TIME
      time
    • OTHER

      public static final Dev.Category OTHER
      none of the above
  • Method Details

    • values

      public static Dev.Category[] values()
      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 Dev.Category valueOf(String name)
      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