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