public enum EventManipulationType extends Enum<EventManipulationType>
Enum Constant and Description |
---|
delete
Delete
|
insert
Insert
|
unknown
Unknown
|
update
Update
|
Modifier and Type | Method and Description |
---|---|
static EventManipulationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventManipulationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventManipulationType unknown
public static final EventManipulationType insert
public static final EventManipulationType delete
public static final EventManipulationType update
public static EventManipulationType[] values()
for (EventManipulationType c : EventManipulationType.values()) System.out.println(c);
public static EventManipulationType 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 © 2000-2020 Sualeh Fatehi. All rights reserved.