public enum ArbitrationStrategy extends Enum<ArbitrationStrategy>
| Enum Constant and Description |
|---|
Custom |
FixedChannel |
HighestPriority |
Keyword |
LastSeen |
NotSet |
| Modifier and Type | Method and Description |
|---|---|
static ArbitrationStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArbitrationStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArbitrationStrategy NotSet
public static final ArbitrationStrategy FixedChannel
public static final ArbitrationStrategy Keyword
public static final ArbitrationStrategy HighestPriority
public static final ArbitrationStrategy Custom
public static final ArbitrationStrategy LastSeen
public static ArbitrationStrategy[] values()
for (ArbitrationStrategy c : ArbitrationStrategy.values()) System.out.println(c);
public static ArbitrationStrategy 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 © 2021. All rights reserved.