Enum Class Cell.CellType

java.lang.Object
java.lang.Enum<Cell.CellType>
com.rs.seagull.emulator.api.Cell.CellType
All Implemented Interfaces:
Serializable, Comparable<Cell.CellType>, Constable
Enclosing interface:
Cell

public static enum Cell.CellType extends Enum<Cell.CellType>
An enumeration of possible Cell types.
Version:
$Id$
Author:
MRomijn
  • Enum Constant Details

    • EMPTY

      public static final Cell.CellType EMPTY
      Describes an empty cell
    • LEAD

      public static final Cell.CellType LEAD
      Describes a lead (attribute) propagated to following cells
    • TEXT

      public static final Cell.CellType TEXT
      Describes a character with known value
  • Method Details

    • values

      public static Cell.CellType[] 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 Cell.CellType 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