public static enum ERXResponseRewriter.TagMissingBehavior extends Enum<ERXResponseRewriter.TagMissingBehavior>
Enum Constant and Description |
---|
Inline
Inline just renders the content at the current location in the
response.
|
Skip
Skip does not render the content at all and silently ignores the
missing tag.
|
SkipAndWarn
Like skip, no content will be rendered into the response, but a
warning will be printed onto the console.
|
Top
Top tries to behave like head-insertion by maintaining the same
ordering as head would (first added, first printed).
|
Modifier and Type | Method and Description |
---|---|
static ERXResponseRewriter.TagMissingBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ERXResponseRewriter.TagMissingBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ERXResponseRewriter.TagMissingBehavior Top
public static final ERXResponseRewriter.TagMissingBehavior Inline
public static final ERXResponseRewriter.TagMissingBehavior Skip
public static final ERXResponseRewriter.TagMissingBehavior SkipAndWarn
public static ERXResponseRewriter.TagMissingBehavior[] values()
for (ERXResponseRewriter.TagMissingBehavior c : ERXResponseRewriter.TagMissingBehavior.values()) System.out.println(c);
public static ERXResponseRewriter.TagMissingBehavior 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 © 2002 – 2024 Project Wonder.