public enum DailyLoginCountBucket extends Enum<DailyLoginCountBucket>
| Enum Constant and Description |
|---|
ELEVEN_TO_FIFTY |
FIFTY_ONE_TO_HUNDRED |
FIVE_HUNDRED_ONE_TO_THOUSAND |
HUNDRED_THOUSAND_ONE_TO_MILLION |
HUNDRED_TO_FIVE_HUNDRED |
ONE_TO_TEN |
OVER_MILLION |
TEN_THOUSAND_ONE_TO_HUNDRED_THOUSAND |
THOUSAND_ONE_TO_TEN_THOUSAND |
ZERO |
| Modifier and Type | Method and Description |
|---|---|
static DailyLoginCountBucket |
forCount(long count) |
long |
getLowerBound() |
static DailyLoginCountBucket |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DailyLoginCountBucket[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DailyLoginCountBucket ZERO
public static final DailyLoginCountBucket ONE_TO_TEN
public static final DailyLoginCountBucket ELEVEN_TO_FIFTY
public static final DailyLoginCountBucket FIFTY_ONE_TO_HUNDRED
public static final DailyLoginCountBucket HUNDRED_TO_FIVE_HUNDRED
public static final DailyLoginCountBucket FIVE_HUNDRED_ONE_TO_THOUSAND
public static final DailyLoginCountBucket THOUSAND_ONE_TO_TEN_THOUSAND
public static final DailyLoginCountBucket TEN_THOUSAND_ONE_TO_HUNDRED_THOUSAND
public static final DailyLoginCountBucket HUNDRED_THOUSAND_ONE_TO_MILLION
public static final DailyLoginCountBucket OVER_MILLION
public static DailyLoginCountBucket[] values()
for (DailyLoginCountBucket c : DailyLoginCountBucket.values()) System.out.println(c);
public static DailyLoginCountBucket 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 static DailyLoginCountBucket forCount(long count)
public long getLowerBound()
Copyright © 2018 Atlassian. All rights reserved.