public enum NotifyText extends java.lang.Enum<NotifyText>
Enum Constant and Description |
---|
AS_LINES
Causes the text to be notified as a list of lines.
|
AS_STRING
Causes the text lines to be stuffed to a single line String.
|
SKIP
No text notification takes place at all.
|
Modifier and Type | Method and Description |
---|---|
boolean |
asLines() |
boolean |
asString() |
boolean |
isSkip() |
static NotifyText |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NotifyText[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotifyText AS_STRING
public static final NotifyText AS_LINES
public static final NotifyText SKIP
public static NotifyText[] values()
for (NotifyText c : NotifyText.values()) System.out.println(c);
public static NotifyText 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 nullpublic boolean isSkip()
public boolean asLines()
public boolean asString()
Copyright © 2014 EsprIT-Systems. All Rights Reserved.