public enum ModeEnum extends Enum<ModeEnum>
| Modifier and Type | Field and Description |
|---|---|
private String |
code |
private String |
desc |
| Modifier and Type | Method and Description |
|---|---|
static ModeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModeEnum ADD
public static final ModeEnum UPDATE
public static final ModeEnum DELETE
public static ModeEnum[] values()
for (ModeEnum c : ModeEnum.values()) System.out.println(c);
public static ModeEnum 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 © 2024. All rights reserved.