public enum ElementCloneFlags extends java.lang.Enum<ElementCloneFlags>
| Enum Constant and Description |
|---|
COPY_CLIPPING
Acquire the clip path and put it in the copied object. NoGraphicState must not be set.
|
NO_GRAPHIC_STATE
The copied element does not need a GraphicState.
|
NONE
Normal copying.
|
| Modifier and Type | Method and Description |
|---|---|
static ElementCloneFlags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ElementCloneFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ElementCloneFlags NONE
public static final ElementCloneFlags NO_GRAPHIC_STATE
public static final ElementCloneFlags COPY_CLIPPING
public static ElementCloneFlags[] values()
for (ElementCloneFlags c : ElementCloneFlags.values()) System.out.println(c);
public static ElementCloneFlags 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