public static enum MatrixSettings.LegendLocation extends java.lang.Enum<MatrixSettings.LegendLocation>
| Enum Constant and Description | 
|---|
ABOVE_COLUMN_HEADER  | 
DO_NOT_DISPLAY  | 
TOP_LEFT_CORNER  | 
| Modifier and Type | Method and Description | 
|---|---|
static MatrixSettings.LegendLocation | 
getEnum(java.lang.String type)
Finds enum by its type 
 | 
java.lang.String | 
getType()
Representation type of this enum (literal values) 
 | 
static MatrixSettings.LegendLocation | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static MatrixSettings.LegendLocation[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final MatrixSettings.LegendLocation ABOVE_COLUMN_HEADER
public static final MatrixSettings.LegendLocation TOP_LEFT_CORNER
public static final MatrixSettings.LegendLocation DO_NOT_DISPLAY
public static MatrixSettings.LegendLocation[] values()
for (MatrixSettings.LegendLocation c : MatrixSettings.LegendLocation.values()) System.out.println(c);
public static MatrixSettings.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 nullpublic java.lang.String getType()
public static MatrixSettings.LegendLocation getEnum(java.lang.String type)
type - type to find