public enum DirectoryCountBucket extends Enum<DirectoryCountBucket>
| Enum Constant and Description |
|---|
ONE |
OVER_TEN |
SIX_TO_TEN |
THREE_TO_FIVE |
TWO |
ZERO |
| Modifier and Type | Method and Description |
|---|---|
static DirectoryCountBucket |
forCount(int count) |
static DirectoryCountBucket |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DirectoryCountBucket[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DirectoryCountBucket ZERO
public static final DirectoryCountBucket ONE
public static final DirectoryCountBucket TWO
public static final DirectoryCountBucket THREE_TO_FIVE
public static final DirectoryCountBucket SIX_TO_TEN
public static final DirectoryCountBucket OVER_TEN
public static DirectoryCountBucket[] values()
for (DirectoryCountBucket c : DirectoryCountBucket.values()) System.out.println(c);
public static DirectoryCountBucket 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 DirectoryCountBucket forCount(int count)
Copyright © 2019 Atlassian. All rights reserved.