public static enum CodeEditor.MarginLocation extends java.lang.Enum<CodeEditor.MarginLocation>
| Enum Constant and Description | 
|---|
BOTTOM  | 
LEFT  | 
LEFT_FIXED  | 
RIGHT  | 
TOP  | 
| Modifier and Type | Method and Description | 
|---|---|
static CodeEditor.MarginLocation | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static CodeEditor.MarginLocation[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final CodeEditor.MarginLocation TOP
public static final CodeEditor.MarginLocation LEFT
public static final CodeEditor.MarginLocation LEFT_FIXED
public static final CodeEditor.MarginLocation RIGHT
public static final CodeEditor.MarginLocation BOTTOM
public static CodeEditor.MarginLocation[] values()
for (CodeEditor.MarginLocation c : CodeEditor.MarginLocation.values()) System.out.println(c);
public static CodeEditor.MarginLocation 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