public static enum ProfileOrganizer.Slice extends Enum<ProfileOrganizer.Slice>
Enumerates different strategies for dividing peers into subsets based on performance tiers and capacity requirements. Used to control which portions of the peer population are considered during selection operations.
Supports bit masking for combining multiple selection criteria and provides predefined constants for common slicing patterns including full selection, tier-based selection, and capacity-limited selection modes.
| Enum Constant and Description |
|---|
SLICE_0 |
SLICE_0_1 |
SLICE_1 |
SLICE_2 |
SLICE_2_3 |
SLICE_3 |
SLICE_ALL |
| Modifier and Type | Field and Description |
|---|---|
(package private) int |
mask |
(package private) int |
val |
| Modifier and Type | Method and Description |
|---|---|
static ProfileOrganizer.Slice |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProfileOrganizer.Slice[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProfileOrganizer.Slice SLICE_0
public static final ProfileOrganizer.Slice SLICE_0_1
public static final ProfileOrganizer.Slice SLICE_1
public static final ProfileOrganizer.Slice SLICE_2
public static final ProfileOrganizer.Slice SLICE_2_3
public static final ProfileOrganizer.Slice SLICE_3
public static final ProfileOrganizer.Slice SLICE_ALL
public static ProfileOrganizer.Slice 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 ProfileOrganizer.Slice[] values()
for (ProfileOrganizer.Slice c : ProfileOrganizer.Slice.values()) System.out.println(c);