public static enum BindIn.EmptyHandling extends Enum<BindIn.EmptyHandling>
| Enum Constant and Description | 
|---|
| NULLoutput "null" (without quotes, as keyword), useful e.g. | 
| THROWthrow IllegalArgumentException | 
| VOIDoutput "" (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.