public static enum BindIn.EmptyHandling extends Enum<BindIn.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 BindIn.EmptyHandling |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BindIn.EmptyHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BindIn.EmptyHandling NULL
public static final BindIn.EmptyHandling THROW
public static final BindIn.EmptyHandling VOID
public static BindIn.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 nullpublic static BindIn.EmptyHandling[] values()
for (BindIn.EmptyHandling c : BindIn.EmptyHandling.values()) System.out.println(c);
Copyright © 2018. All rights reserved.