public enum ContextParams extends Enum<ContextParams>
Enum Constant and Description |
---|
CONFIGMAP |
DEFAULT |
INPUT |
REQUEST |
RESPONE |
RESULT |
Modifier and Type | Method and Description |
---|---|
static ContextParams |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContextParams[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContextParams CONFIGMAP
public static final ContextParams INPUT
public static final ContextParams REQUEST
public static final ContextParams RESPONE
public static final ContextParams RESULT
public static final ContextParams DEFAULT
public static ContextParams[] values()
for (ContextParams c : ContextParams.values()) System.out.println(c);
public static ContextParams 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 © 2019. All rights reserved.