public enum NotifyBodText extends java.lang.Enum<NotifyBodText>
Enum Constant and Description |
---|
NOTIFY
Tells to evaluate and notify the body text of the currently parsed object by
calling
NdfHandler.foundBodyText(java.util.List) . |
SKIP
Tells to skip the body text of the currently parsed object.
|
Modifier and Type | Method and Description |
---|---|
static NotifyBodText |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NotifyBodText[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotifyBodText NOTIFY
NdfHandler.foundBodyText(java.util.List)
.public static final NotifyBodText SKIP
NdfHandler.foundBodyText(java.util.List)
will not be called any more.
This speeds up parsing because no body text evaluation is done.public static NotifyBodText[] values()
for (NotifyBodText c : NotifyBodText.values()) System.out.println(c);
public static NotifyBodText 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 nullCopyright © 2012 EsprIT-Systems. All Rights Reserved.