Package org.apache.poi.hemf.draw
Enum HemfGraphics.EmfRenderState
- java.lang.Object
-
- java.lang.Enum<HemfGraphics.EmfRenderState>
-
- org.apache.poi.hemf.draw.HemfGraphics.EmfRenderState
-
- All Implemented Interfaces:
Serializable,Comparable<HemfGraphics.EmfRenderState>
- Enclosing class:
- HemfGraphics
public static enum HemfGraphics.EmfRenderState extends Enum<HemfGraphics.EmfRenderState>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EMF_DCONTEXTEMF_ONLYEMFPLUS_ONLYINITIAL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HemfGraphics.EmfRenderStatevalueOf(String name)Returns the enum constant of this type with the specified name.static HemfGraphics.EmfRenderState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INITIAL
public static final HemfGraphics.EmfRenderState INITIAL
-
EMF_ONLY
public static final HemfGraphics.EmfRenderState EMF_ONLY
-
EMFPLUS_ONLY
public static final HemfGraphics.EmfRenderState EMFPLUS_ONLY
-
EMF_DCONTEXT
public static final HemfGraphics.EmfRenderState EMF_DCONTEXT
-
-
Method Detail
-
values
public static HemfGraphics.EmfRenderState[] 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 (HemfGraphics.EmfRenderState c : HemfGraphics.EmfRenderState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HemfGraphics.EmfRenderState 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
-
-