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