Enum Class Entity.Type

java.lang.Object
java.lang.Enum<Entity.Type>
net.botwithus.rs3.game.scene.entities.Entity.Type
All Implemented Interfaces:
Serializable, Comparable<Entity.Type>, Constable
Enclosing class:
Entity

public static enum Entity.Type extends Enum<Entity.Type>
  • Enum Constant Details

    • LOCATION

      public static final Entity.Type LOCATION
    • NPC_ENTITY

      public static final Entity.Type NPC_ENTITY
    • PLAYER_ENTITY

      public static final Entity.Type PLAYER_ENTITY
    • OBJ_STACK

      public static final Entity.Type OBJ_STACK
    • SPOT_ANIMATION

      public static final Entity.Type SPOT_ANIMATION
    • PROJECTILE_ANIMATION

      public static final Entity.Type PROJECTILE_ANIMATION
    • TERRAIN

      public static final Entity.Type TERRAIN
    • WATER

      public static final Entity.Type WATER
    • COMBINED_LOCATION

      public static final Entity.Type COMBINED_LOCATION
    • LOCATION_CONTAINER

      public static final Entity.Type LOCATION_CONTAINER
    • MAP_SQUARE

      public static final Entity.Type MAP_SQUARE
    • LIGHT_SOURCE

      public static final Entity.Type LIGHT_SOURCE
    • COMBINED_LOCATION_SECTION

      public static final Entity.Type COMBINED_LOCATION_SECTION
    • HINT_ARROW

      public static final Entity.Type HINT_ARROW
    • HINT_TRAIL

      public static final Entity.Type HINT_TRAIL
    • WATER_CONTAINER

      public static final Entity.Type WATER_CONTAINER
    • LOCATION_INTERFACE

      public static final Entity.Type LOCATION_INTERFACE
    • HINT_TRAIL_POINT

      public static final Entity.Type HINT_TRAIL_POINT
    • HINT_ARROW_POINTER

      public static final Entity.Type HINT_ARROW_POINTER
  • Method Details

    • values

      public static Entity.Type[] 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 Entity.Type 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
    • valueOf

      public static Entity.Type valueOf(int entityTypeId)
      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:
      entityTypeId - 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
    • getEntityTypeId

      public final int getEntityTypeId()