public static enum LayoutLocation.Type extends Enum<LayoutLocation.Type>
| Modifier and Type | Method and Description | 
|---|---|
String | 
toString()  | 
static LayoutLocation.Type | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static LayoutLocation.Type[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final LayoutLocation.Type GEO
public static final LayoutLocation.Type GRID
public static LayoutLocation.Type[] values()
for (LayoutLocation.Type c : LayoutLocation.Type.values()) System.out.println(c);
public static LayoutLocation.Type valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<LayoutLocation.Type>