public static enum CarvingData.CarvingType extends Enum<CarvingData.CarvingType>
Modifier and Type | Method and Description |
---|---|
static CarvingData.CarvingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CarvingData.CarvingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CarvingData.CarvingType CENTER
public static final CarvingData.CarvingType WALL
public static final CarvingData.CarvingType TOP
public static final CarvingData.CarvingType BOTTOM
public static CarvingData.CarvingType[] values()
for (CarvingData.CarvingType c : CarvingData.CarvingType.values()) System.out.println(c);
public static CarvingData.CarvingType 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.