public enum GrandFinalsModifier extends Enum<GrandFinalsModifier>
This option only affects double elimination.
null/blank (default) - give the winners bracket finalist two chances to beat the losers bracket finalist
'single match' - create only one grand finals match
'skip' - don't create a finals match between winners and losers bracket finalists
| Enum Constant and Description |
|---|
BLANK |
SINGLE_MATCH |
SKIP |
| Modifier and Type | Method and Description |
|---|---|
static GrandFinalsModifier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GrandFinalsModifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GrandFinalsModifier BLANK
public static final GrandFinalsModifier SINGLE_MATCH
public static final GrandFinalsModifier SKIP
public static GrandFinalsModifier[] values()
for (GrandFinalsModifier c : GrandFinalsModifier.values()) System.out.println(c);
public static GrandFinalsModifier 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 © 2016. All rights reserved.