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