public enum STGroupBy extends Enum<STGroupBy>
Java class for ST_GroupBy.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_GroupBy"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="range"/> <enumeration value="seconds"/> <enumeration value="minutes"/> <enumeration value="hours"/> <enumeration value="days"/> <enumeration value="months"/> <enumeration value="quarters"/> <enumeration value="years"/> </restriction> </simpleType>
Enum Constant and Description |
---|
DAYS |
HOURS |
MINUTES |
MONTHS |
QUARTERS |
RANGE |
SECONDS |
YEARS |
Modifier and Type | Method and Description |
---|---|
static STGroupBy |
fromValue(String v) |
String |
value() |
static STGroupBy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STGroupBy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STGroupBy RANGE
public static final STGroupBy SECONDS
public static final STGroupBy MINUTES
public static final STGroupBy HOURS
public static final STGroupBy DAYS
public static final STGroupBy MONTHS
public static final STGroupBy QUARTERS
public static final STGroupBy YEARS
public static STGroupBy[] values()
for (STGroupBy c : STGroupBy.values()) System.out.println(c);
public static STGroupBy 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()
Copyright © 2007-2014. All Rights Reserved.