public enum LegendLocation extends java.lang.Enum<LegendLocation>
WARNING: do not modify the name of this class, its package or its members, as it is exposed via direct Java access from 4GL code.
| Modifier and Type | Method and Description |
|---|---|
static LegendLocation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LegendLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LegendLocation TOP
public static final LegendLocation LEFT
public static final LegendLocation RIGHT
public static final LegendLocation BOTTOM
public static LegendLocation[] values()
for (LegendLocation c : LegendLocation.values()) System.out.println(c);
public static LegendLocation 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