Enum-Klasse Items.Type

java.lang.Object
java.lang.Enum<Items.Type>
net.risingworld.api.definitions.Items.Type
Alle implementierten Schnittstellen:
Serializable, Comparable<Items.Type>, Constable
Umschließende Klasse:
Items

public static enum Items.Type extends Enum<Items.Type>
The general item type
  • Verschachtelte Klassen - Übersicht

    Von Klasse geerbte verschachtelte Klassen/Schnittstellen java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum-Konstanten - Übersicht

    Enum-Konstanten
    Enum-Konstante
    Beschreibung
    Ammunition (including arrows)
    This item is a custom API item
    Special item (this item can contain other items)
    Bait
    Ball item (e.g soccer ball)
    Blueprint
    Drinking bottle (containing drinkable
    Item is a bucket
    Item used to claim land / areas
    Wearable items (clothes)
    Placeable construction element
    Default inventory item
    This item is a dye
    Eligible for being put into equipment slots in inventory
    Explosive
    Fibers (plant fibers, wool, cotton etc), anything that can be processed at a spinning wheel
    Firearm / gun
    Food item
    Ingot
    Raw food ingredient or raw meal (cooking)
    Item is a knife (used for gutting, tanning etc)
    Light item (e.g torch, flashlight etc)
    Music disc
    Null type
    Npc
    Placeable object (e.g furniture)
    Ore item (also includes terrain materials, like stone)
    This item is used to paint elements in the world
    Pelt / hide (can be processed at a tanning rack)
    Placeable vegetation item (e.g saplings)
    Poster / custom image
    Powder / dust
    Shears (for shearing sheeps)
    This item is used to harvest plants
    Tree log piece
    Vehicle construction/assembly item (vehicle kit etc)
  • Feldübersicht

    Felder
    Modifizierer und Typ
    Feld
    Beschreibung
    final int
     
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    static Items.Type
    get(int value)
     
    static Items.Type
    Gibt die Enum-Konstante dieser Klasse mit dem angegebenen Namen zurück.
    static Items.Type[]
    Gibt ein Array mit den Konstanten dieser Enum-Klasse in der Reihenfolge ihrer Deklaration zurück.

    Von Klasse geerbte Methoden java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum-Konstanten - Details

    • None

      public static final Items.Type None
      Null type
    • Default

      public static final Items.Type Default
      Default inventory item
    • Equipment

      public static final Items.Type Equipment
      Eligible for being put into equipment slots in inventory
    • Clothing

      public static final Items.Type Clothing
      Wearable items (clothes)
    • Bag

      public static final Items.Type Bag
      Special item (this item can contain other items)
    • Treelog

      public static final Items.Type Treelog
      Tree log piece
    • Plant

      public static final Items.Type Plant
      Placeable vegetation item (e.g saplings)
    • Object

      public static final Items.Type Object
      Placeable object (e.g furniture)
    • Construction

      public static final Items.Type Construction
      Placeable construction element
    • Blueprint

      public static final Items.Type Blueprint
      Blueprint
    • Poster

      public static final Items.Type Poster
      Poster / custom image
    • Claim

      public static final Items.Type Claim
      Item used to claim land / areas
    • Vehicle

      public static final Items.Type Vehicle
      Vehicle construction/assembly item (vehicle kit etc)
    • Light

      public static final Items.Type Light
      Light item (e.g torch, flashlight etc)
    • Ore

      public static final Items.Type Ore
      Ore item (also includes terrain materials, like stone)
    • Ingot

      public static final Items.Type Ingot
      Ingot
    • Food

      public static final Items.Type Food
      Food item
    • Bottle

      public static final Items.Type Bottle
      Drinking bottle (containing drinkable
    • Ingredient

      public static final Items.Type Ingredient
      Raw food ingredient or raw meal (cooking)
    • Powder

      public static final Items.Type Powder
      Powder / dust
    • Fibers

      public static final Items.Type Fibers
      Fibers (plant fibers, wool, cotton etc), anything that can be processed at a spinning wheel
    • Pelt

      public static final Items.Type Pelt
      Pelt / hide (can be processed at a tanning rack)
    • Bait

      public static final Items.Type Bait
      Bait
    • Npc

      public static final Items.Type Npc
      Npc
    • Firearm

      public static final Items.Type Firearm
      Firearm / gun
    • Explosive

      public static final Items.Type Explosive
      Explosive
    • Ammo

      public static final Items.Type Ammo
      Ammunition (including arrows)
    • Sickle

      public static final Items.Type Sickle
      This item is used to harvest plants
    • Knife

      public static final Items.Type Knife
      Item is a knife (used for gutting, tanning etc)
    • Paint

      public static final Items.Type Paint
      This item is used to paint elements in the world
    • Dye

      public static final Items.Type Dye
      This item is a dye
    • SheepShears

      public static final Items.Type SheepShears
      Shears (for shearing sheeps)
    • Bucket

      public static final Items.Type Bucket
      Item is a bucket
    • Ball

      public static final Items.Type Ball
      Ball item (e.g soccer ball)
    • MusicDisc

      public static final Items.Type MusicDisc
      Music disc
    • API

      public static final Items.Type API
      This item is a custom API item
  • Felddetails

    • value

      public final int value
  • Methodendetails

    • values

      public static Items.Type[] values()
      Gibt ein Array mit den Konstanten dieser Enum-Klasse in der Reihenfolge ihrer Deklaration zurück.
      Gibt zurück:
      ein Array mit den Konstanten dieser Enum-Klasse in der Reihenfolge ihrer Deklaration
    • valueOf

      public static Items.Type valueOf(String name)
      Gibt die Enum-Konstante dieser Klasse mit dem angegebenen Namen zurück. Die Zeichenfolge muss exakt mit einer ID übereinstimmen, mit der eine Enum-Konstante in dieser Klasse deklariert wird. (Zusätzliche Leerzeichen sind nicht zulässig.)
      Parameter:
      name - Name der zurückzugebenden Enumerationskonstante.
      Gibt zurück:
      Enumerationskonstante mit dem angegebenen Namen
      Löst aus:
      IllegalArgumentException - wenn diese Enum-Klasse keine Konstante mit dem angegebenen Namen enthält
      NullPointerException - wenn das Argument nicht angegeben wird
    • get

      public static Items.Type get(int value)