public enum NotifyValue extends java.lang.Enum<NotifyValue>
| Enum Constant and Description |
|---|
AS_STRING
Causes table/array values to be read and notified as Strings like property values.
|
AS_WORD
Causes table/array values to be read and notified as
AsciiWords. |
| Modifier and Type | Method and Description |
|---|---|
static NotifyValue |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NotifyValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotifyValue AS_STRING
public static final NotifyValue AS_WORD
AsciiWords.
This is much faster than reading as String but it does no interpretation
on the read words at all.public static NotifyValue[] values()
for (NotifyValue c : NotifyValue.values()) System.out.println(c);
public static NotifyValue 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.