public enum FilledMode extends java.lang.Enum<FilledMode>
<filled> tag.| Enum Constant and Description |
|---|
ALL
The action is executed when all of the mentioned input items are filled
by the last user input.
|
ANY
The action is executed when any of the specified input items is filled by
the last user input.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getMode()
Retrieves the name of this filled mode.
|
static FilledMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FilledMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilledMode ALL
public static final FilledMode ANY
public static FilledMode[] values()
for (FilledMode c : FilledMode.values()) System.out.println(c);
public static FilledMode 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 java.lang.String getMode()