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