Enum Class DataType

java.lang.Object
java.lang.Enum<DataType>
de.rpgframework.random.DataType
All Implemented Interfaces:
Serializable, Comparable<DataType>, java.lang.constant.Constable

public enum DataType extends Enum<DataType>
  • Enum Constant Details

    • ACTOR_BASEDATA

      public static final DataType ACTOR_BASEDATA
    • ACTOR_PERSONALITY

      public static final DataType ACTOR_PERSONALITY
    • ACTOR_VISUAL

      public static final DataType ACTOR_VISUAL
    • BATTLEMAP

      public static final DataType BATTLEMAP
    • LOCATION_DESCRIPTION

      public static final DataType LOCATION_DESCRIPTION
    • LOCATION_ROOM_DESCRIPTION

      public static final DataType LOCATION_ROOM_DESCRIPTION
    • PLOT_ABSTRACT

      public static final DataType PLOT_ABSTRACT
    • PLOT_DETAIL

      public static final DataType PLOT_DETAIL
    • RULEDATA

      public static final DataType RULEDATA
  • Method Details

    • values

      public static DataType[] 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 DataType 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