public static enum RenderingAgent.RenderMode extends Enum<RenderingAgent.RenderMode>
RenderingAgent.Renderer#mode(RenderMode)
Enum Constant and Description |
---|
DEFAULT
Default mode,
#global.isPreview delivers false , #global.is("WEBEDIT" delivers
false . |
PREVIEW
Preview mode:
#global.isPreview delivers true , #global.is("WEBEDIT") delivers
false . |
STRICT
This mode is intended for isolated section rendering with maximum compatibility.
|
WEBEDIT
Content creator mode:
#global.isPreview delivers true , #global.is("WEBEDIT") delivers
true . |
Modifier and Type | Method and Description |
---|---|
static RenderingAgent.RenderMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RenderingAgent.RenderMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderingAgent.RenderMode PREVIEW
#global.isPreview
delivers true
, #global.is("WEBEDIT")
delivers
false
.public static final RenderingAgent.RenderMode WEBEDIT
#global.isPreview
delivers true
, #global.is("WEBEDIT")
delivers
true
.public static final RenderingAgent.RenderMode DEFAULT
#global.isPreview
delivers false
, #global.is("WEBEDIT"
delivers
false
.public static final RenderingAgent.RenderMode STRICT
public static RenderingAgent.RenderMode[] values()
for (RenderingAgent.RenderMode c : RenderingAgent.RenderMode.values()) System.out.println(c);
public static RenderingAgent.RenderMode 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 nullCopyright © 2021 e-Spirit AG. All Rights Reserved. Build 5.2.210210