public static enum BindList.EmptyHandling extends Enum<BindList.EmptyHandling>
| Enum Constant and Description |
|---|
NULL
output "null" (without quotes, as keyword), useful e.g.
|
THROW
throw IllegalArgumentException
|
VOID
output "" (without quotes, i.e.
|
| Modifier and Type | Method and Description |
|---|---|
static BindList.EmptyHandling |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BindList.EmptyHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BindList.EmptyHandling VOID
select * from things where x in ()
public static final BindList.EmptyHandling NULL
select * from things where x in (null)
public static final BindList.EmptyHandling THROW
public static BindList.EmptyHandling[] values()
for (BindList.EmptyHandling c : BindList.EmptyHandling.values()) System.out.println(c);
public static BindList.EmptyHandling 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.