public enum CatDimLineRep extends java.lang.Enum<CatDimLineRep>
Enum Constant and Description |
---|
catDimAuto |
catDimHoriz |
catDimOffset |
catDimParallel |
catDimTrueDim |
catDimUndef |
catDimUserDefined |
catDimVert |
Modifier and Type | Method and Description |
---|---|
static CatDimLineRep |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CatDimLineRep[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CatDimLineRep catDimUndef
public static final CatDimLineRep catDimHoriz
public static final CatDimLineRep catDimVert
public static final CatDimLineRep catDimAuto
public static final CatDimLineRep catDimUserDefined
public static final CatDimLineRep catDimTrueDim
public static final CatDimLineRep catDimParallel
public static final CatDimLineRep catDimOffset
public static CatDimLineRep[] values()
for (CatDimLineRep c : CatDimLineRep.values()) System.out.println(c);
public static CatDimLineRep 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