public enum BookkeeperAction extends Enum<BookkeeperAction>
| Enum Constant and Description |
|---|
BookKeeperAction_ADD |
BookKeeperAction_SUB |
| Modifier and Type | Method and Description |
|---|---|
byte |
value() |
static BookkeeperAction |
valueOf(byte v) |
static BookkeeperAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BookkeeperAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BookkeeperAction BookKeeperAction_ADD
public static final BookkeeperAction BookKeeperAction_SUB
public static BookkeeperAction[] values()
for (BookkeeperAction c : BookkeeperAction.values()) System.out.println(c);
public static BookkeeperAction 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 static BookkeeperAction valueOf(byte v)
public byte value()
Copyright © 2020. All rights reserved.