java.io.Serializable, java.lang.Comparable<ApproximationTyp>public enum ApproximationTyp extends java.lang.Enum<ApproximationTyp>
| Enum Constant | Description |
|---|---|
BSPLINE |
Datenkatalogkonstante für einen B-Spline.
|
CUBICSPLINE |
Datenkatalogkonstante für einen Cubic-Spline.
|
POLYLINE |
Datenkatalogkonstante für eine Polylinie.
|
UNBESTIMMT |
Datenkatalogkonstante für die unbestimmte Approximation.
|
| Modifier and Type | Method | Description |
|---|---|---|
int |
getCode() |
|
static ApproximationTyp |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ApproximationTyp[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
static ApproximationTyp |
with(int code) |
public static final ApproximationTyp UNBESTIMMT
public static final ApproximationTyp BSPLINE
public static final ApproximationTyp CUBICSPLINE
public static final ApproximationTyp POLYLINE
public static ApproximationTyp[] values()
for (ApproximationTyp c : ApproximationTyp.values()) System.out.println(c);
public static ApproximationTyp 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 nullpublic static ApproximationTyp with(int code)
public int getCode()