Package net.minecraft.tileentity
Enum JigsawTileEntity.OrientationType
- java.lang.Object
-
- java.lang.Enum<JigsawTileEntity.OrientationType>
-
- net.minecraft.tileentity.JigsawTileEntity.OrientationType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<JigsawTileEntity.OrientationType>
,IStringSerializable
- Enclosing class:
- JigsawTileEntity
public static enum JigsawTileEntity.OrientationType extends java.lang.Enum<JigsawTileEntity.OrientationType> implements IStringSerializable
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
name
-
Constructor Summary
Constructors Modifier Constructor Description private
OrientationType(java.lang.String p_i231862_3_)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.util.Optional<JigsawTileEntity.OrientationType>
byName(java.lang.String p_235673_0_)
java.lang.String
getSerializedName()
static JigsawTileEntity.OrientationType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static JigsawTileEntity.OrientationType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ROLLABLE
public static final JigsawTileEntity.OrientationType ROLLABLE
-
ALIGNED
public static final JigsawTileEntity.OrientationType ALIGNED
-
-
Method Detail
-
values
public static JigsawTileEntity.OrientationType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (JigsawTileEntity.OrientationType c : JigsawTileEntity.OrientationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JigsawTileEntity.OrientationType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getSerializedName
public java.lang.String getSerializedName()
- Specified by:
getSerializedName
in interfaceIStringSerializable
-
byName
public static java.util.Optional<JigsawTileEntity.OrientationType> byName(java.lang.String p_235673_0_)
-
-