public enum LatencyDistributors extends Enum<LatencyDistributors> implements LatencyDistributor
| Modifier and Type | Method and Description |
|---|---|
static LatencyDistributors |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LatencyDistributors[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfapplypublic static final LatencyDistributors NORMAL
public static final LatencyDistributors RANDOM
public static final LatencyDistributors RANDOM2
public static LatencyDistributors[] values()
for (LatencyDistributors c : LatencyDistributors.values()) System.out.println(c);
public static LatencyDistributors 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 © 2023. All rights reserved.