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