public enum NotifyListValue extends java.lang.Enum<NotifyListValue>
Enum Constant and Description |
---|
AS_BUFFERED_WORD
Causes list values to be read and notified as
AsciiWord s. |
AS_STRING
Causes list values to be read and notified as Strings.
|
SKIP
Causes list values to be skipped.
|
Modifier and Type | Method and Description |
---|---|
boolean |
asBufferedWord() |
boolean |
asString() |
boolean |
isSkip() |
static NotifyListValue |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NotifyListValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotifyListValue AS_STRING
public static final NotifyListValue AS_BUFFERED_WORD
AsciiWord
s.
This is the fastest way of notification but it does no interpretation
on the data at all.public static final NotifyListValue SKIP
public static NotifyListValue[] values()
for (NotifyListValue c : NotifyListValue.values()) System.out.println(c);
public static NotifyListValue 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 asString()
public boolean asBufferedWord()
Copyright © 2014 EsprIT-Systems. All Rights Reserved.