public enum ClearOptions extends Enum<ClearOptions>
Enum Constant and Description |
---|
COMMENT
Clears the cell comment.
|
CONTENT
Clears the cell content.
|
FORMAT
Clears the cell formatting.
|
HYPERLINK
Clears the cell hyperlink.
|
Modifier and Type | Method and Description |
---|---|
static EnumSet<ClearOptions> |
all()
Clears everything (content, formatting, comment and hyperlink).
|
static ClearOptions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClearOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClearOptions COMMENT
public static final ClearOptions CONTENT
public static final ClearOptions FORMAT
public static final ClearOptions HYPERLINK
public static EnumSet<ClearOptions> all()
public static ClearOptions 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 ClearOptions[] values()
for (ClearOptions c : ClearOptions.values()) System.out.println(c);
© GemBox d.o.o. — All rights reserved.