public enum MediaUsage extends java.lang.Enum<MediaUsage>
| Enum Constant and Description |
|---|
BOUNDED_IN_ONE_DIMENSION
Output is placed on one page.
|
PAGINATE
Output is paginated.
|
UNBOUNDED
Output is placed on one page, and neither page-height nor page-width
may be specified.
|
| Modifier and Type | Method and Description |
|---|---|
static MediaUsage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MediaUsage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MediaUsage PAGINATE
public static final MediaUsage BOUNDED_IN_ONE_DIMENSION
public static final MediaUsage UNBOUNDED
public static MediaUsage[] values()
for (MediaUsage c : MediaUsage.values()) System.out.println(c);
public static MediaUsage 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 nullThis documentation was created 2017-01-24 at 21:26 GMT by The aXSL Group and may be freely copied. See license for details.