public enum CustomModel extends java.lang.Enum<CustomModel>
Modifier and Type | Method and Description |
---|---|
net.minecraft.client.renderer.model.Model |
getModel()
Lazy loads the model
|
static CustomModel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CustomModel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomModel PILLAR_PLATFORM
public static final CustomModel PILLAR_COLUMN
public static final CustomModel PILLAR_COLUMN_FRACTURED_BOTTOM
public static final CustomModel PILLAR_COLUMN_FRACTURED_TOP
public static final CustomModel POKE_BALL
public static final CustomModel CHERISH_BALL
public static final CustomModel GREAT_BALL
public static final CustomModel HEAVY_BALL
public static final CustomModel MASTER_BALL
public static final CustomModel NET_BALL
public static final CustomModel TIMER_BALL
public static final CustomModel BEAST_BALL
public static final CustomModel MEGA_BRACELET_ORAS
public static final CustomModel MEGA_BRACELET_ORAS_STONE
public static final CustomModel MEGA_GLASSES
public static final CustomModel MEGA_ANCHOR
public static final CustomModel MEGA_BOOST_NECKLACE
public static final CustomModel DYNAMAX_BAND
public static final CustomModel MACH_BIKE
public static final CustomModel ACRO_BIKE
public static final CustomModel DYNAMAX_CLOUDS
public static final CustomModel OVAL_CHARM
public static final CustomModel SHINY_CHARM
public static final CustomModel EXP_CHARM
public static final CustomModel CATCHING_CHARM
public static final CustomModel MARK_CHARM
public static CustomModel[] values()
for (CustomModel c : CustomModel.values()) System.out.println(c);
public static CustomModel valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic net.minecraft.client.renderer.model.Model getModel()