public static enum CopyReport.CopyMode extends Enum<CopyReport.CopyMode>
Enum Constant and Description |
---|
CREATION
Creation : a new content is created to perform the copy
|
EDITION
Edition : metadata are duplication into an already existing target content
|
Modifier and Type | Method and Description |
---|---|
static CopyReport.CopyMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CopyReport.CopyMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CopyReport.CopyMode CREATION
public static final CopyReport.CopyMode EDITION
public static CopyReport.CopyMode[] values()
for (CopyReport.CopyMode c : CopyReport.CopyMode.values()) System.out.println(c);
public static CopyReport.CopyMode 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 null