public static enum ExOleObjAtom.OleType extends java.lang.Enum<ExOleObjAtom.OleType>
Enum Constant and Description |
---|
CONTROL
The OLE object is an ActiveX control.
|
EMBEDDED
An embedded OLE object; the object is serialized and saved within the file.
|
LINKED
A linked OLE object; the object is saved outside of the file.
|
Modifier and Type | Method and Description |
---|---|
static ExOleObjAtom.OleType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExOleObjAtom.OleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExOleObjAtom.OleType EMBEDDED
public static final ExOleObjAtom.OleType LINKED
public static final ExOleObjAtom.OleType CONTROL
public static ExOleObjAtom.OleType[] values()
for (ExOleObjAtom.OleType c : ExOleObjAtom.OleType.values()) System.out.println(c);
public static ExOleObjAtom.OleType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright 2021 The Apache Software Foundation or its licensors, as applicable.