public enum DAOMode extends java.lang.Enum<DAOMode>
| Enum Constant and Description |
|---|
DELETE
Mode suppression
|
SAVE
Mode enregistrement
|
UPDATE
Mode mise a jour
|
| Modifier and Type | Method and Description |
|---|---|
static DAOMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DAOMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DAOMode SAVE
public static final DAOMode UPDATE
public static final DAOMode DELETE
public static DAOMode[] values()
for (DAOMode c : DAOMode.values()) System.out.println(c);
public static DAOMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2018 Leadware. All Rights Reserved.