Enum TimingOption
- java.lang.Object
-
- java.lang.Enum<TimingOption>
-
- de.bsvrz.pat.sysbed.plugins.archiveinfo.TimingOption
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TimingOption>
,java.lang.constant.Constable
public enum TimingOption extends java.lang.Enum<TimingOption>
Verschiedene Optionen für die Zeitauswahl
-
-
Method Summary
Modifier and Type Method Description java.lang.String
toString()
static TimingOption
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TimingOption[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DataSets
public static final TimingOption DataSets
-
Minutes
public static final TimingOption Minutes
-
Hours
public static final TimingOption Hours
-
Days
public static final TimingOption Days
-
Weeks
public static final TimingOption Weeks
-
Months
public static final TimingOption Months
-
Years
public static final TimingOption Years
-
Everything
public static final TimingOption Everything
-
Absolute
public static final TimingOption Absolute
-
-
Method Detail
-
values
public static TimingOption[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TimingOption valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<TimingOption>
-
-