public enum CatHoleBottomType extends java.lang.Enum<CatHoleBottomType>
Enum Constant and Description |
---|
catFlatHoleBottom |
catTrimmedHoleBottom |
catVHoleBottom |
Modifier and Type | Method and Description |
---|---|
static CatHoleBottomType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CatHoleBottomType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CatHoleBottomType catFlatHoleBottom
public static final CatHoleBottomType catVHoleBottom
public static final CatHoleBottomType catTrimmedHoleBottom
public static CatHoleBottomType[] values()
for (CatHoleBottomType c : CatHoleBottomType.values()) System.out.println(c);
public static CatHoleBottomType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null