public enum RemovalStrategy extends java.lang.Enum<RemovalStrategy>
| Enum Constant | Description |
|---|---|
FLATTEN |
The object is removed, but its visual appearance is drawn as
non-editable graphic onto the output page.
|
REMOVE |
The object is removed together with its visual appearance.
|
| Modifier and Type | Method | Description |
|---|---|---|
static RemovalStrategy |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static RemovalStrategy[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RemovalStrategy FLATTEN
public static final RemovalStrategy REMOVE
public static RemovalStrategy[] values()
for (RemovalStrategy c : RemovalStrategy.values()) System.out.println(c);
public static RemovalStrategy 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 null