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