public enum AskFilter extends Enum<AskFilter>
Enum Constant and Description |
---|
a
all (user and system definded) prarms
|
ae
all empty params
|
p
user params marked for prompting
|
pe
empty user params markted for prompting
|
u
user params
|
ue
empty user params
|
Modifier and Type | Method and Description |
---|---|
static AskFilter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AskFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AskFilter a
public static final AskFilter ae
public static final AskFilter u
public static final AskFilter ue
public static final AskFilter p
public static final AskFilter pe
public static AskFilter[] values()
for (AskFilter c : AskFilter.values()) System.out.println(c);
public static AskFilter valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2012–2018 Cenote GmbH. All rights reserved.