public enum BlockBreakStage extends Enum<BlockBreakStage>
| Enum Constant and Description |
|---|
RESET |
STAGE_1 |
STAGE_10 |
STAGE_2 |
STAGE_3 |
STAGE_4 |
STAGE_5 |
STAGE_6 |
STAGE_7 |
STAGE_8 |
STAGE_9 |
| Modifier and Type | Method and Description |
|---|---|
static BlockBreakStage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BlockBreakStage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockBreakStage STAGE_1
public static final BlockBreakStage STAGE_2
public static final BlockBreakStage STAGE_3
public static final BlockBreakStage STAGE_4
public static final BlockBreakStage STAGE_5
public static final BlockBreakStage STAGE_6
public static final BlockBreakStage STAGE_7
public static final BlockBreakStage STAGE_8
public static final BlockBreakStage STAGE_9
public static final BlockBreakStage STAGE_10
public static final BlockBreakStage RESET
public static BlockBreakStage[] values()
for (BlockBreakStage c : BlockBreakStage.values()) System.out.println(c);
public static BlockBreakStage 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 © 2020. All rights reserved.