public enum ListUpdateAction extends Enum<ListUpdateAction>
| Enum Constant and Description |
|---|
ADD
Add (Invocation).
|
DELETE
Delete (Release).
|
NO_VALUE
Identifies no value.
|
| Modifier and Type | Method and Description |
|---|---|
static ListUpdateAction |
forValue(char value) |
char |
getValue() |
static ListUpdateAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ListUpdateAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListUpdateAction NO_VALUE
public static final ListUpdateAction ADD
public static final ListUpdateAction DELETE
public static ListUpdateAction[] values()
for (ListUpdateAction c : ListUpdateAction.values()) System.out.println(c);
public static ListUpdateAction 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 char getValue()
public static ListUpdateAction forValue(char value)
Copyright © 2012–2025 Onix Solutions. All rights reserved.