public enum PivotClientDateRanges extends Enum<PivotClientDateRanges>
Java class for PivotClientDateRanges.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="PivotClientDateRanges">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="ALL"/>
<enumeration value="PAST_DAY"/>
<enumeration value="PAST_WEEK"/>
<enumeration value="PAST_MONTH"/>
<enumeration value="PAST_3_MONTH"/>
<enumeration value="PAST_YEAR"/>
<enumeration value="CUSTOM"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ALL |
CUSTOM |
PAST_3_MONTH |
PAST_DAY |
PAST_MONTH |
PAST_WEEK |
PAST_YEAR |
| Modifier and Type | Method and Description |
|---|---|
static PivotClientDateRanges |
fromValue(String v) |
String |
value() |
static PivotClientDateRanges |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PivotClientDateRanges[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PivotClientDateRanges ALL
public static final PivotClientDateRanges PAST_DAY
public static final PivotClientDateRanges PAST_WEEK
public static final PivotClientDateRanges PAST_MONTH
public static final PivotClientDateRanges PAST_3_MONTH
public static final PivotClientDateRanges PAST_YEAR
public static final PivotClientDateRanges CUSTOM
public static PivotClientDateRanges[] values()
for (PivotClientDateRanges c : PivotClientDateRanges.values()) System.out.println(c);
public static PivotClientDateRanges 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 String value()
public static PivotClientDateRanges fromValue(String v)
Copyright © 2020. All rights reserved.