Package net.minecraftforge.common.util
Enum Class TransformationHelper.TransformOrigin
java.lang.Object
java.lang.Enum<TransformationHelper.TransformOrigin>
net.minecraftforge.common.util.TransformationHelper.TransformOrigin
- All Implemented Interfaces:
- Serializable,- Comparable<TransformationHelper.TransformOrigin>,- Constable,- StringRepresentable
- Enclosing class:
- TransformationHelper
public static enum TransformationHelper.TransformOrigin
extends Enum<TransformationHelper.TransformOrigin>
implements StringRepresentable
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>Nested classes/interfaces inherited from interface net.minecraft.util.StringRepresentableStringRepresentable.EnumCodec<E extends Enum<E> & StringRepresentable>
- 
Enum Constant SummaryEnum Constants
- 
Field SummaryFieldsFields inherited from interface net.minecraft.util.StringRepresentablePRE_BUILT_MAP_THRESHOLD
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionstatic @Nullable TransformationHelper.TransformOriginfromString(String originName) @NotNull Stringorg.joml.Vector3fReturns the enum constant of this class with the specified name.static TransformationHelper.TransformOrigin[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
CENTER
- 
CORNER
- 
OPPOSING_CORNER
 
- 
- 
Field Details- 
vecprivate final org.joml.Vector3f vec
- 
name
 
- 
- 
Constructor Details- 
TransformOrigin
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
 
- 
valueOfReturns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
- IllegalArgumentException- if this enum class has no constant with the specified name
- NullPointerException- if the argument is null
 
- 
getVectorpublic org.joml.Vector3f getVector()
- 
getSerializedName- Specified by:
- getSerializedNamein interface- StringRepresentable
 
- 
fromString@Nullable public static @Nullable TransformationHelper.TransformOrigin fromString(String originName) 
 
-