public static enum TimeSettings.FirstWeekOfYear extends Enum<TimeSettings.FirstWeekOfYear>
| Enum Constant and Description |
|---|
FIRST_4_DAY_WEEK
Year starts with the first 4 day week.
|
FIRST_FULL_WEEK
Year starts with the first full week.
|
STARTS_JAN1
Year starts with Jan.
|
USE_CLIENT_SETTINGS
Use value defined in client settings variable.
|
| Modifier and Type | Method and Description |
|---|---|
static TimeSettings.FirstWeekOfYear |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimeSettings.FirstWeekOfYear[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimeSettings.FirstWeekOfYear USE_CLIENT_SETTINGS
public static final TimeSettings.FirstWeekOfYear STARTS_JAN1
public static final TimeSettings.FirstWeekOfYear FIRST_4_DAY_WEEK
public static final TimeSettings.FirstWeekOfYear FIRST_FULL_WEEK
public static TimeSettings.FirstWeekOfYear[] values()
for (TimeSettings.FirstWeekOfYear c : TimeSettings.FirstWeekOfYear.values()) System.out.println(c);
public static TimeSettings.FirstWeekOfYear valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021. All rights reserved.