public enum ParameterKind extends Enum<ParameterKind>
| Enum Constant and Description |
|---|
LONG |
NAMED_TYPE |
TYPE |
VARIABLE |
| Modifier and Type | Method and Description |
|---|---|
static ParameterKind |
fromJsonValue(String value) |
String |
jsonName() |
static ParameterKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParameterKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParameterKind TYPE
public static final ParameterKind NAMED_TYPE
public static final ParameterKind LONG
public static final ParameterKind VARIABLE
public static ParameterKind[] values()
for (ParameterKind c : ParameterKind.values()) System.out.println(c);
public static ParameterKind 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 nullpublic String jsonName()
public static ParameterKind fromJsonValue(String value)
Copyright © 2012–2019. All rights reserved.