Package org.apache.poi.hemf.record.emf
Enum HemfMisc.HemfModifyWorldTransformMode
java.lang.Object
java.lang.Enum<HemfMisc.HemfModifyWorldTransformMode>
org.apache.poi.hemf.record.emf.HemfMisc.HemfModifyWorldTransformMode
- All Implemented Interfaces:
Serializable,Comparable<HemfMisc.HemfModifyWorldTransformMode>,java.lang.constant.Constable
- Enclosing class:
HemfMisc
public static enum HemfMisc.HemfModifyWorldTransformMode
extends Enum<HemfMisc.HemfModifyWorldTransformMode>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionReset the current transform using the identity matrix.Multiply the current transform.Multiply the current transform.Perform the function of an EMR_SETWORLDTRANSFORM record -
Field Summary
Fields -
Method Summary
Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
MWT_IDENTITY
Reset the current transform using the identity matrix. In this mode, the specified transform data is ignored. -
MWT_LEFTMULTIPLY
Multiply the current transform. In this mode, the specified transform data is the left multiplicand, and the transform that is currently defined in the playback device context is the right multiplicand. -
MWT_RIGHTMULTIPLY
Multiply the current transform. In this mode, the specified transform data is the right multiplicand, and the transform that is currently defined in the playback device context is the left multiplicand. -
MWT_SET
Perform the function of an EMR_SETWORLDTRANSFORM record
-
-
Field Details
-
id
public final int id
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
valueOf
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:
id- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-