public static enum SVG.AspectRatioScale extends java.lang.Enum<SVG.AspectRatioScale>
Enum Constant and Description |
---|
MEET
The document is scaled so that it is as large as possible without overflowing the viewport.
|
SLICE
The document is scaled so that entirely fills the viewport.
|
Modifier and Type | Method and Description |
---|---|
static SVG.AspectRatioScale |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SVG.AspectRatioScale[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SVG.AspectRatioScale MEET
public static final SVG.AspectRatioScale SLICE
public static SVG.AspectRatioScale[] values()
for (SVG.AspectRatioScale c : SVG.AspectRatioScale.values()) System.out.println(c);
public static SVG.AspectRatioScale 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