public enum ModifyType extends Enum<ModifyType>
| Enum Constant and Description |
|---|
FAST |
NO_PHYSICS |
NORMAL |
| Modifier and Type | Method and Description |
|---|---|
static ModifyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModifyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModifyType NORMAL
public static final ModifyType NO_PHYSICS
public static final ModifyType FAST
public static ModifyType[] values()
for (ModifyType c : ModifyType.values()) System.out.println(c);
public static ModifyType 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 © 2021 elMakers. All rights reserved.