public enum ExcelObjectSourceType extends Enum<ExcelObjectSourceType>
Enum Constant and Description |
---|
EMBED
Object is embedded in the file in which
ExcelFile instance is saved. |
EMBED_AND_LINK
Object is embedded and linked to the file in which
ExcelFile instance is saved. |
LINK
Object is linked to the file in which
ExcelFile instance is saved. |
Modifier and Type | Method and Description |
---|---|
static ExcelObjectSourceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExcelObjectSourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExcelObjectSourceType EMBED
ExcelFile
instance is saved.public static final ExcelObjectSourceType EMBED_AND_LINK
ExcelFile
instance is saved.public static final ExcelObjectSourceType LINK
ExcelFile
instance is saved.public static ExcelObjectSourceType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static ExcelObjectSourceType[] values()
for (ExcelObjectSourceType c : ExcelObjectSourceType.values()) System.out.println(c);
© GemBox Ltd. — All rights reserved.