public enum ParameterListType extends Enum<ParameterListType>
| Modifier and Type | Class and Description |
|---|---|
static class |
ParameterListType.DataDecoder
A Data decoder for this Enum
|
| Enum Constant and Description |
|---|
NAMED |
POSITIONAL |
| Modifier and Type | Field and Description |
|---|---|
static String |
NAMED_STR |
static String |
POSITIONAL_STR |
| Modifier and Type | Method and Description |
|---|---|
static ParameterListType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParameterListType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParameterListType NAMED
public static final ParameterListType POSITIONAL
public static final String NAMED_STR
public static final String POSITIONAL_STR
public static ParameterListType[] values()
for (ParameterListType c : ParameterListType.values()) System.out.println(c);
public static ParameterListType 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 © 2016. All rights reserved.