public enum FormMode extends Enum<FormMode>
| Enum Constant and Description |
|---|
create
Mode création.
|
edit
Mode edition.
|
readOnly
Mode lecture seul.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getTheme() |
static FormMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FormMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FormMode readOnly
public static final FormMode edit
public static final FormMode create
public static FormMode[] values()
for (FormMode c : FormMode.values()) System.out.println(c);
public static FormMode 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 getTheme()
Copyright © 2017. All Rights Reserved.