Package cern.nxcals.api.utils
Enum TimeUtils.TimeSplits
- java.lang.Object
-
- java.lang.Enum<TimeUtils.TimeSplits>
-
- cern.nxcals.api.utils.TimeUtils.TimeSplits
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TimeUtils.TimeSplits>
- Enclosing class:
- TimeUtils
public static enum TimeUtils.TimeSplits extends java.lang.Enum<TimeUtils.TimeSplits>
Represents various time splits used in NXCALS. Created to have type & time safety (like equal divisions by time per day).
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FIFTEEN_MINUTE_SPLIT
FIVE_MINUTE_SPLIT
ONE_HOUR_SPLIT
TEN_MINUTE_SPLIT
THIRTY_MINUTE_SPLIT
TWENTY_MINUTE_SPLIT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getSize()
static TimeUtils.TimeSplits
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TimeUtils.TimeSplits[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FIVE_MINUTE_SPLIT
public static final TimeUtils.TimeSplits FIVE_MINUTE_SPLIT
-
TEN_MINUTE_SPLIT
public static final TimeUtils.TimeSplits TEN_MINUTE_SPLIT
-
FIFTEEN_MINUTE_SPLIT
public static final TimeUtils.TimeSplits FIFTEEN_MINUTE_SPLIT
-
TWENTY_MINUTE_SPLIT
public static final TimeUtils.TimeSplits TWENTY_MINUTE_SPLIT
-
THIRTY_MINUTE_SPLIT
public static final TimeUtils.TimeSplits THIRTY_MINUTE_SPLIT
-
ONE_HOUR_SPLIT
public static final TimeUtils.TimeSplits ONE_HOUR_SPLIT
-
-
Method Detail
-
values
public static TimeUtils.TimeSplits[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TimeUtils.TimeSplits c : TimeUtils.TimeSplits.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TimeUtils.TimeSplits 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
-
getSize
public long getSize()
-
-