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