public enum ModifyKind extends Enum<ModifyKind>
Enum Constant and Description |
---|
DELETE
Deletion operation.
|
INSERT
Insertion operation.
|
UPDATE
Update operation.
|
Modifier and Type | Method and Description |
---|---|
static ModifyKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModifyKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModifyKind INSERT
public static final ModifyKind UPDATE
public static final ModifyKind DELETE
public static ModifyKind[] values()
for (ModifyKind c : ModifyKind.values()) System.out.println(c);
public static ModifyKind 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 © 2014–2024 The Apache Software Foundation. All rights reserved.