public enum ItemDescriptorType extends Enum<ItemDescriptorType>
| Enum Constant and Description |
|---|
DEFAULT |
DEFERRED |
INVALID |
ITEM_TAG |
MOLANG |
| Modifier and Type | Method and Description |
|---|---|
static ItemDescriptorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ItemDescriptorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ItemDescriptorType INVALID
public static final ItemDescriptorType DEFAULT
public static final ItemDescriptorType MOLANG
public static final ItemDescriptorType ITEM_TAG
public static final ItemDescriptorType DEFERRED
public static ItemDescriptorType[] values()
for (ItemDescriptorType c : ItemDescriptorType.values()) System.out.println(c);
public static ItemDescriptorType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018–2022 CloudburstMC. All rights reserved.