Enum-Klasse Asset.Type

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

public static enum Asset.Type extends Enum<Asset.Type>
The asset type
  • Enum-Konstanten - Details

    • Unspecified

      public static final Asset.Type Unspecified
    • AssetBundle

      public static final Asset.Type AssetBundle
    • Texture

      public static final Asset.Type Texture
    • Model

      public static final Asset.Type Model
    • Mesh

      public static final Asset.Type Mesh
    • Prefab

      public static final Asset.Type Prefab
    • Material

      public static final Asset.Type Material
    • Sound

      public static final Asset.Type Sound
    • USS

      public static final Asset.Type USS
    • UXML

      public static final Asset.Type UXML
    • ModelImportSettings

      public static final Asset.Type ModelImportSettings
  • Methodendetails

    • values

      public static Asset.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 Asset.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 Asset.Type get(int ordinal)