public enum CalendarRangeRepeat extends Enum<CalendarRangeRepeat>
| Enum Constant and Description | 
|---|
ALL
Modifying all instances 
 | 
CURRENT
Modifying just this instance 
 | 
FUTURE
Modifying current + future 
 | 
PREV
Modifying current + previous 
 | 
| Modifier and Type | Method and Description | 
|---|---|
int | 
getValue()  | 
static CalendarRangeRepeat | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static CalendarRangeRepeat[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final CalendarRangeRepeat CURRENT
public static final CalendarRangeRepeat ALL
public static final CalendarRangeRepeat PREV
public static final CalendarRangeRepeat FUTURE
public static CalendarRangeRepeat[] values()
for (CalendarRangeRepeat c : CalendarRangeRepeat.values()) System.out.println(c);
public static CalendarRangeRepeat 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 nullpublic int getValue()
Copyright © 2019–2021 HCL. All rights reserved.