Enum Class CanvasArt

java.lang.Object
java.lang.Enum<CanvasArt>
btw.entity.util.CanvasArt
All Implemented Interfaces:
Serializable, Comparable<CanvasArt>, Constable

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

    • Icarus

      public static final CanvasArt Icarus
    • Dagon

      public static final CanvasArt Dagon
    • Pentacle

      public static final CanvasArt Pentacle
    • Dragon

      public static final CanvasArt Dragon
    • TreeOfLife

      public static final CanvasArt TreeOfLife
    • Magician

      public static final CanvasArt Magician
    • HangedMan

      public static final CanvasArt HangedMan
    • Death

      public static final CanvasArt Death
    • Fool

      public static final CanvasArt Fool
    • IsleOfDead

      public static final CanvasArt IsleOfDead
  • Field Details

    • MAX_ART_TITLE_LENGTH

      public static final int MAX_ART_TITLE_LENGTH
      Holds the maximum length of paintings art title.
    • title

      public final String title
      Painting Title.
    • sizeX

      public final int sizeX
    • sizeY

      public final int sizeY
    • offsetX

      public final int offsetX
    • offsetY

      public final int offsetY
  • Method Details

    • values

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