public static enum MixedGenerator.CarverType extends Enum<MixedGenerator.CarverType>
Enum Constant and Description |
---|
BOX |
BOX_WALLED |
CAVE |
ROUND |
ROUND_WALLED |
Modifier and Type | Method and Description |
---|---|
static MixedGenerator.CarverType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MixedGenerator.CarverType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MixedGenerator.CarverType CAVE
public static final MixedGenerator.CarverType BOX
public static final MixedGenerator.CarverType ROUND
public static final MixedGenerator.CarverType BOX_WALLED
public static final MixedGenerator.CarverType ROUND_WALLED
public static MixedGenerator.CarverType[] values()
for (MixedGenerator.CarverType c : MixedGenerator.CarverType.values()) System.out.println(c);
public static MixedGenerator.CarverType 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 © 2012–2016. All rights reserved.