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