public enum MushroomBlockTexture extends Enum<MushroomBlockTexture>
| Enum Constant and Description | 
|---|
| ALL_CAPCap texture on all faces. | 
| ALL_PORESPores on all faces. | 
| ALL_STEMStem texture on all faces. | 
| CAP_EASTCap texture on the top and east faces, pores on remaining sides. | 
| CAP_NORTHCap texture on the top and north faces, pores on remaining sides. | 
| CAP_NORTH_EASTCap texture on the top, north and east faces, pores on remaining sides. | 
| CAP_NORTH_WESTCap texture on the top, north and west faces, pores on remaining sides. | 
| CAP_SOUTHCap texture on the top and south faces, pores on remaining sides. | 
| CAP_SOUTH_EASTCap texture on the top, south and east faces, pores on remaining sides. | 
| CAP_SOUTH_WESTCap texture on the top, south and west faces, pores on remaining sides. | 
| CAP_TOPCap texture on the top face, pores on remaining sides. | 
| CAP_WESTCap texture on the top and west faces, pores on remaining sides. | 
| STEM_SIDESStem texture on the north, east, south and west faces, pores on top and
 bottom. | 
| Modifier and Type | Method and Description | 
|---|---|
| static MushroomBlockTexture | getByData(byte data)Deprecated. 
 Magic value | 
| static MushroomBlockTexture | getCapByFace(BlockFace face)Gets the MushroomBlockType with cap texture on the given block face. | 
| BlockFace | getCapFace()Gets the face that has cap texture. | 
| byte | getData()Deprecated. 
 Magic value | 
| static MushroomBlockTexture | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static MushroomBlockTexture[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final MushroomBlockTexture ALL_PORES
public static final MushroomBlockTexture CAP_NORTH_WEST
public static final MushroomBlockTexture CAP_NORTH
public static final MushroomBlockTexture CAP_NORTH_EAST
public static final MushroomBlockTexture CAP_WEST
public static final MushroomBlockTexture CAP_TOP
public static final MushroomBlockTexture CAP_EAST
public static final MushroomBlockTexture CAP_SOUTH_WEST
public static final MushroomBlockTexture CAP_SOUTH
public static final MushroomBlockTexture CAP_SOUTH_EAST
public static final MushroomBlockTexture STEM_SIDES
public static final MushroomBlockTexture ALL_CAP
public static final MushroomBlockTexture ALL_STEM
public static MushroomBlockTexture[] values()
for (MushroomBlockTexture c : MushroomBlockTexture.values()) System.out.println(c);
public static MushroomBlockTexture 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 null@Deprecated public byte getData()
public BlockFace getCapFace()
@Deprecated public static MushroomBlockTexture getByData(byte data)
data - Data value to fetchMushroomBlockTexture representing the given value, or
 null if it doesn't existpublic static MushroomBlockTexture getCapByFace(BlockFace face)
face - the required block face with cap textureMushroomBlockTexture representing the given block
 face, or null if it doesn't existBlockFaceCopyright © 2016. All rights reserved.