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