public enum TDAPI_SKIP extends Enum<TDAPI_SKIP>
Interval flags for graphs and summation by interval methods.
Enum Constant and Description |
---|
TDOLE_SKIP_DAYS
The value of this constant is 0
|
TDOLE_SKIP_MONTHS
The value of this constant is 2
|
TDOLE_SKIP_WEEKS
The value of this constant is 1
|
TDOLE_SKIP_YEARS
The value of this constant is 3
|
Modifier and Type | Method and Description |
---|---|
static TDAPI_SKIP |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TDAPI_SKIP[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TDAPI_SKIP TDOLE_SKIP_DAYS
The value of this constant is 0
public static final TDAPI_SKIP TDOLE_SKIP_WEEKS
The value of this constant is 1
public static final TDAPI_SKIP TDOLE_SKIP_MONTHS
The value of this constant is 2
public static final TDAPI_SKIP TDOLE_SKIP_YEARS
The value of this constant is 3
public static TDAPI_SKIP[] values()
for (TDAPI_SKIP c : TDAPI_SKIP.values()) System.out.println(c);
public static TDAPI_SKIP 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 nullCopyright © 2020. All rights reserved.