public enum TriggerOperation extends Enum<TriggerOperation>
Enum Constant and Description |
---|
ALL
ALL operations.
|
CREATE
CREATE operations only.
|
DELETE
DELETE operations only.
|
REPLACE
REPLACE operations only.
|
UPDATE
UPDATE operations only.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue()
Gets the numerical value of the trigger operation.
|
String |
toString() |
static TriggerOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TriggerOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TriggerOperation ALL
public static final TriggerOperation CREATE
public static final TriggerOperation UPDATE
public static final TriggerOperation DELETE
public static final TriggerOperation REPLACE
public static TriggerOperation[] values()
for (TriggerOperation c : TriggerOperation.values()) System.out.println(c);
public static TriggerOperation 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 int getValue()
public String toString()
toString
in class Enum<TriggerOperation>
Copyright © 2020 Microsoft Corporation. All rights reserved.