public enum ModeContext extends Enum<ModeContext>
ModeContext provides modification modes for create, delete, update and no
modification| Enum Constant and Description |
|---|
CREATE
The modification mode that signals the creation mode
|
DELETE
The modification mode that signals the deletion mode
|
NONE
The mode that signals that no modification will be done
|
UPDATE
The modification mode that signals the update mode
|
| Modifier and Type | Method and Description |
|---|---|
static ModeContext |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModeContext[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModeContext CREATE
public static final ModeContext DELETE
public static final ModeContext NONE
public static final ModeContext UPDATE
public static ModeContext[] values()
for (ModeContext c : ModeContext.values()) System.out.println(c);
public static ModeContext 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 © 2015–2018 Alpha Ro Group UG (haftungsbeschrÀngt). All rights reserved.