public enum QueryInterval extends Enum<QueryInterval>
Modifier and Type | Method and Description |
---|---|
String |
getTag() |
static QueryInterval |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryInterval[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryInterval DAILY
public static final QueryInterval WEEKLY
public static final QueryInterval MONTHLY
public static QueryInterval[] values()
for (QueryInterval c : QueryInterval.values()) System.out.println(c);
public static QueryInterval 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 getTag()
Copyright © 2022. All rights reserved.