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