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