Serializable, Comparable<FluidCollisionMode>public enum FluidCollisionMode extends Enum<FluidCollisionMode>
| Enum Constant | Description | 
|---|---|
| ALWAYS | Collide with all fluids. | 
| NEVER | Ignore fluids. | 
| SOURCE_ONLY | Only collide with source fluid blocks. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| static FluidCollisionMode | valueOf(String name) | Returns the enum constant of this type with the specified name. | 
| static FluidCollisionMode[] | values() | Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final FluidCollisionMode NEVER
public static final FluidCollisionMode SOURCE_ONLY
public static final FluidCollisionMode ALWAYS
public static FluidCollisionMode[] values()
for (FluidCollisionMode c : FluidCollisionMode.values()) System.out.println(c);
public static FluidCollisionMode 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.