public enum CatHoleType extends java.lang.Enum<CatHoleType>
| Enum Constant and Description |
|---|
catCounterboredHole |
catCounterdrilledHole |
catCountersunkHole |
catSimpleHole |
catTaperedHole |
| Modifier and Type | Method and Description |
|---|---|
static CatHoleType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CatHoleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CatHoleType catSimpleHole
public static final CatHoleType catTaperedHole
public static final CatHoleType catCounterboredHole
public static final CatHoleType catCountersunkHole
public static final CatHoleType catCounterdrilledHole
public static CatHoleType[] values()
for (CatHoleType c : CatHoleType.values()) System.out.println(c);
public static CatHoleType 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