Enum HemfPlusMisc.CombineMode
- java.lang.Object
-
- java.lang.Enum<HemfPlusMisc.CombineMode>
-
- org.apache.poi.hemf.record.emfplus.HemfPlusMisc.CombineMode
-
- All Implemented Interfaces:
Serializable,Comparable<HemfPlusMisc.CombineMode>
- Enclosing class:
- HemfPlusMisc
public static enum HemfPlusMisc.CombineMode extends Enum<HemfPlusMisc.CombineMode>
-
-
Field Summary
Fields Modifier and Type Field Description intidHwmfRegionModeregionMode
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HemfPlusMisc.CombineModevalueOf(int id)Returns the enum constant of this type with the specified name.static HemfPlusMisc.CombineModevalueOf(String name)Returns the enum constant of this type with the specified name.static HemfPlusMisc.CombineMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REPLACE
public static final HemfPlusMisc.CombineMode REPLACE
-
INTERSECT
public static final HemfPlusMisc.CombineMode INTERSECT
-
UNION
public static final HemfPlusMisc.CombineMode UNION
-
XOR
public static final HemfPlusMisc.CombineMode XOR
-
EXCLUDE
public static final HemfPlusMisc.CombineMode EXCLUDE
-
COMPLEMENT
public static final HemfPlusMisc.CombineMode COMPLEMENT
-
-
Field Detail
-
id
public final int id
-
regionMode
public final HwmfRegionMode regionMode
-
-
Method Detail
-
values
public static HemfPlusMisc.CombineMode[] 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 (HemfPlusMisc.CombineMode c : HemfPlusMisc.CombineMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HemfPlusMisc.CombineMode valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
valueOf
public static HemfPlusMisc.CombineMode valueOf(int id)
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
-
-