public enum BookEditType extends Enum<BookEditType>
| Enum Constant and Description |
|---|
ADD_PAGE |
DELETE_PAGE |
REPLACE_PAGE |
SIGN_BOOK |
SWAP_PAGES |
| Modifier and Type | Method and Description |
|---|---|
static BookEditType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BookEditType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BookEditType REPLACE_PAGE
public static final BookEditType ADD_PAGE
public static final BookEditType DELETE_PAGE
public static final BookEditType SWAP_PAGES
public static final BookEditType SIGN_BOOK
public static BookEditType[] values()
for (BookEditType c : BookEditType.values()) System.out.println(c);
public static BookEditType 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 © 2018–2019 NukkitX. All rights reserved.