public static enum PlayerInjectionHandler.ConflictStrategy extends Enum<PlayerInjectionHandler.ConflictStrategy>
| Enum Constant and Description |
|---|
BAIL_OUT
Immediately exit.
|
OVERRIDE
Override it.
|
| Modifier and Type | Method and Description |
|---|---|
static PlayerInjectionHandler.ConflictStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlayerInjectionHandler.ConflictStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlayerInjectionHandler.ConflictStrategy OVERRIDE
public static final PlayerInjectionHandler.ConflictStrategy BAIL_OUT
public static PlayerInjectionHandler.ConflictStrategy[] values()
for (PlayerInjectionHandler.ConflictStrategy c : PlayerInjectionHandler.ConflictStrategy.values()) System.out.println(c);
public static PlayerInjectionHandler.ConflictStrategy 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 © 2012–2017 Comphenix and dmulloy2. Licensed under the GNU GPL v2.