| Enum Constant and Description |
|---|
BY_RANGE |
NEVER
Never include the resource.
|
ON_EVERY_PAGE
Include the resource on every page in the file.
|
ONCE_PER_DOCUMENT
Include the resource only once per file.
|
WHEN_NEEDED
When needed.
|
| Modifier and Type | Method and Description |
|---|---|
static Inclusion |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Inclusion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Inclusion ONCE_PER_DOCUMENT
public static final Inclusion ON_EVERY_PAGE
public static final Inclusion NEVER
public static final Inclusion WHEN_NEEDED
public static final Inclusion BY_RANGE
public static Inclusion[] values()
for (Inclusion c : Inclusion.values()) System.out.println(c);
public static Inclusion 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