public enum JsonFunctionType extends Enum<JsonFunctionType>
| Enum Constant and Description |
|---|
ARRAY |
MYSQL_OBJECT |
OBJECT |
POSTGRES_OBJECT |
| Modifier and Type | Method and Description |
|---|---|
static JsonFunctionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JsonFunctionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JsonFunctionType OBJECT
public static final JsonFunctionType ARRAY
public static final JsonFunctionType POSTGRES_OBJECT
public static final JsonFunctionType MYSQL_OBJECT
public static JsonFunctionType[] values()
for (JsonFunctionType c : JsonFunctionType.values()) System.out.println(c);
public static JsonFunctionType 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 © 2004–2023 JSQLParser. All rights reserved.