public static enum SqlTrigger.Time extends Enum<SqlTrigger.Time>
Enum Constant and Description |
---|
AFTER
The AFTER.
|
BEFORE
The BEFORE.
|
Modifier and Type | Method and Description |
---|---|
static SqlTrigger.Time |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlTrigger.Time[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlTrigger.Time BEFORE
public static final SqlTrigger.Time AFTER
public static SqlTrigger.Time[] values()
for (SqlTrigger.Time c : SqlTrigger.Time.values()) System.out.println(c);
public static SqlTrigger.Time 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 © 2003–2023 XDEV Software. All rights reserved.