public enum ParameterKind extends Enum<ParameterKind>
| Enum Constant and Description |
|---|
DISTINCT_TYPE |
LONG |
LONG_ENUM |
NAMED_TYPE |
TYPE |
VARCHAR_ENUM |
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 final ParameterKind LONG_ENUM
public static final ParameterKind VARCHAR_ENUM
public static final ParameterKind DISTINCT_TYPE
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–2022. All rights reserved.