public enum SqlJsonConstructorNullClause extends Enum<SqlJsonConstructorNullClause>
| Enum Constant and Description |
|---|
ABSENT_ON_NULL |
NULL_ON_NULL |
| Modifier and Type | Method and Description |
|---|---|
static SqlJsonConstructorNullClause |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlJsonConstructorNullClause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlJsonConstructorNullClause NULL_ON_NULL
public static final SqlJsonConstructorNullClause ABSENT_ON_NULL
public final String sql
public static SqlJsonConstructorNullClause[] values()
for (SqlJsonConstructorNullClause c : SqlJsonConstructorNullClause.values()) System.out.println(c);
public static SqlJsonConstructorNullClause 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 © 2012-2022 Apache Software Foundation. All Rights Reserved.