| Enum Constant and Description |
|---|
LATEST_REPLY
The extracted entity originates from the latest reply to the message.
|
OTHER
The extracted entity originates from an undefined part of the message.
|
SIGNATURE
The extracted entity originates from the message signature.
|
SUBJECT
The extracted entity originates from the message subject.
|
| Modifier and Type | Method and Description |
|---|---|
static Position |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Position[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Position LATEST_REPLY
public static final Position SUBJECT
public static final Position SIGNATURE
public static final Position OTHER
public static Position[] values()
for (Position c : Position.values()) System.out.println(c);
public static Position 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