Package com.uc4.communication
Enum Class TimeSettings.FirstWeekOfYear
- All Implemented Interfaces:
Serializable
,Comparable<TimeSettings.FirstWeekOfYear>
,Constable
- Enclosing class:
- TimeSettings
Display setting for the first week of the year.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionYear starts with the first 4 day week.Year starts with the first full week.Year starts with Jan.Use value defined in client settings variable. -
Method Summary
Modifier and TypeMethodDescriptionstatic TimeSettings.FirstWeekOfYear
Returns the enum constant of this class with the specified name.static TimeSettings.FirstWeekOfYear[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
USE_CLIENT_SETTINGS
Use value defined in client settings variable. -
STARTS_JAN1
Year starts with Jan. 1. -
FIRST_4_DAY_WEEK
Year starts with the first 4 day week. -
FIRST_FULL_WEEK
Year starts with the first full week.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-