public enum Action extends Enum<Action>
| Enum Constant and Description | 
|---|
LEFT_CLICK_AIR
Left-clicking the air 
 | 
LEFT_CLICK_BLOCK
Left-clicking a block 
 | 
PHYSICAL
Stepping onto or into a block (Ass-pressure)
 Examples:
 
 Jumping on soil
 Standing on pressure plate
 Triggering redstone ore
 Triggering tripwire
  
 | 
RIGHT_CLICK_AIR
Right-clicking the air 
 | 
RIGHT_CLICK_BLOCK
Right-clicking a block 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static Action | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static Action[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final Action LEFT_CLICK_BLOCK
public static final Action RIGHT_CLICK_BLOCK
public static final Action LEFT_CLICK_AIR
public static final Action RIGHT_CLICK_AIR
public static final Action PHYSICAL
public static Action[] values()
for (Action c : Action.values()) System.out.println(c);
public static Action 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 © 2022. All rights reserved.