public static enum WicketExtendInput.Include extends Enum<WicketExtendInput.Include>
Enum Constant and Description |
---|
ALL
The whole file as is, note: Any tags like <wicket:head> or <wicket:*> will also be included.
|
EXTEND_OR_BODY
Include Header if marked by <wicket:head> & include the body after <body> tag & before </body>.
If <wicket:extend> is defined in the content then that (multiple occurrences) will be returned instead of the entire body. |
Modifier and Type | Method and Description |
---|---|
static WicketExtendInput.Include |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WicketExtendInput.Include[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WicketExtendInput.Include EXTEND_OR_BODY
public static final WicketExtendInput.Include ALL
public static WicketExtendInput.Include[] values()
for (WicketExtendInput.Include c : WicketExtendInput.Include.values()) System.out.println(c);
public static WicketExtendInput.Include 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 © 2018. All rights reserved.