Package org.apache.poi.sl.usermodel
Enum ObjectMetaData.Application
- java.lang.Object
-
- java.lang.Enum<ObjectMetaData.Application>
-
- org.apache.poi.sl.usermodel.ObjectMetaData.Application
-
- All Implemented Interfaces:
Serializable
,Comparable<ObjectMetaData.Application>
- Enclosing interface:
- ObjectMetaData
public static enum ObjectMetaData.Application extends Enum<ObjectMetaData.Application>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectMetaData
getMetaData()
static ObjectMetaData.Application
lookup(String progId)
static ObjectMetaData.Application
valueOf(String name)
Returns the enum constant of this type with the specified name.static ObjectMetaData.Application[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXCEL_V8
public static final ObjectMetaData.Application EXCEL_V8
-
EXCEL_V12
public static final ObjectMetaData.Application EXCEL_V12
-
WORD_V8
public static final ObjectMetaData.Application WORD_V8
-
WORD_V12
public static final ObjectMetaData.Application WORD_V12
-
PDF
public static final ObjectMetaData.Application PDF
-
CUSTOM
public static final ObjectMetaData.Application CUSTOM
-
-
Method Detail
-
values
public static ObjectMetaData.Application[] 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 (ObjectMetaData.Application c : ObjectMetaData.Application.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ObjectMetaData.Application 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
-
lookup
public static ObjectMetaData.Application lookup(String progId)
-
getMetaData
public ObjectMetaData getMetaData()
-
-