public enum InsertPosition extends java.lang.Enum<InsertPosition>
| Enum Constant and Description |
|---|
ABOVE
Insert the new content above (i.e., before) the insertion position.
|
BELOW
Insert the new context below (i.e., after) the insertion position.
|
| Modifier and Type | Method and Description |
|---|---|
static InsertPosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InsertPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InsertPosition ABOVE
public static final InsertPosition BELOW
public static InsertPosition[] values()
for (InsertPosition c : InsertPosition.values()) System.out.println(c);
public static InsertPosition 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${project.version} - Copyright © 2003-2015 The Apache Software Foundation.