public enum LayoutTarget extends java.lang.Enum<LayoutTarget>
Enum Constant and Description |
---|
INNER
Specifies that the plot area size shall determine the
size of the plot area, not including the tick marks and
axis labels.
|
OUTER
Specifies that the plot area size shall determine the
size of the plot area, the tick marks, and the axis
labels.
|
Modifier and Type | Method and Description |
---|---|
static LayoutTarget |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LayoutTarget[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LayoutTarget INNER
public static final LayoutTarget OUTER
public static LayoutTarget[] values()
for (LayoutTarget c : LayoutTarget.values()) System.out.println(c);
public static LayoutTarget 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 nullCopyright © 2005-2010 Potix Corporation. All Rights Reserved.