public static enum CmsContainerPageCopier.CopyMode extends java.lang.Enum<CmsContainerPageCopier.CopyMode>
| Enum Constant and Description |
|---|
automatic
Choose between reuse / copy automatically depending on source / target locale and the configuration .
|
reuse
Do not copy elements.
|
smartCopy
Automatically determine when to copy elements.
|
smartCopyAndChangeLocale
Like smartCopy, but also converts locales of copied elements.
|
| Modifier and Type | Method and Description |
|---|---|
static CmsContainerPageCopier.CopyMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CmsContainerPageCopier.CopyMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CmsContainerPageCopier.CopyMode automatic
public static final CmsContainerPageCopier.CopyMode reuse
public static final CmsContainerPageCopier.CopyMode smartCopy
public static final CmsContainerPageCopier.CopyMode smartCopyAndChangeLocale
public static CmsContainerPageCopier.CopyMode[] values()
for (CmsContainerPageCopier.CopyMode c : CmsContainerPageCopier.CopyMode.values()) System.out.println(c);
public static CmsContainerPageCopier.CopyMode 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