public static enum Signal.Type extends Enum<Signal.Type>
| Enum Constant and Description |
|---|
LEAVE_LOOP |
LEAVE_PROGRAM |
LEAVE_ROUTINE |
NOTFOUND |
SQLEXCEPTION |
UNSUPPORTED_OPERATION |
USERDEFINED |
| Modifier and Type | Method and Description |
|---|---|
static Signal.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Signal.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Signal.Type LEAVE_LOOP
public static final Signal.Type LEAVE_ROUTINE
public static final Signal.Type LEAVE_PROGRAM
public static final Signal.Type SQLEXCEPTION
public static final Signal.Type NOTFOUND
public static final Signal.Type UNSUPPORTED_OPERATION
public static final Signal.Type USERDEFINED
public static Signal.Type[] values()
for (Signal.Type c : Signal.Type.values()) System.out.println(c);
public static Signal.Type 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 © 2019 The Apache Software Foundation. All Rights Reserved.