com.stimulsoft.report.enums
Enum StiDateRangeKind
java.lang.Object
java.lang.Enum<StiDateRangeKind>
com.stimulsoft.report.enums.StiDateRangeKind
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<StiDateRangeKind>
public enum StiDateRangeKind
- extends java.lang.Enum<StiDateRangeKind>
Copyright Stimulsoft
Method Summary |
static StiDateRangeKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static StiDateRangeKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
CurrentMonth
public static final StiDateRangeKind CurrentMonth
CurrentQuarter
public static final StiDateRangeKind CurrentQuarter
CurrentWeek
public static final StiDateRangeKind CurrentWeek
CurrentYear
public static final StiDateRangeKind CurrentYear
NextMonth
public static final StiDateRangeKind NextMonth
NextQuarter
public static final StiDateRangeKind NextQuarter
NextWeek
public static final StiDateRangeKind NextWeek
NextYear
public static final StiDateRangeKind NextYear
PreviousMonth
public static final StiDateRangeKind PreviousMonth
PreviousQuarter
public static final StiDateRangeKind PreviousQuarter
PreviousWeek
public static final StiDateRangeKind PreviousWeek
PreviousYear
public static final StiDateRangeKind PreviousYear
FirstQuarter
public static final StiDateRangeKind FirstQuarter
SecondQuarter
public static final StiDateRangeKind SecondQuarter
ThirdQuarter
public static final StiDateRangeKind ThirdQuarter
FourthQuarter
public static final StiDateRangeKind FourthQuarter
MonthToDate
public static final StiDateRangeKind MonthToDate
QuarterToDate
public static final StiDateRangeKind QuarterToDate
WeekToDate
public static final StiDateRangeKind WeekToDate
YearToDate
public static final StiDateRangeKind YearToDate
Today
public static final StiDateRangeKind Today
Tomorrow
public static final StiDateRangeKind Tomorrow
Yesterday
public static final StiDateRangeKind Yesterday
values
public static StiDateRangeKind[] 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 (StiDateRangeKind c : StiDateRangeKind.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static StiDateRangeKind 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 name
java.lang.NullPointerException
- if the argument is null