public enum BetSettlementCertainty extends Enum<BetSettlementCertainty>
| Enum Constant and Description |
|---|
Confirmed |
LiveScouted |
Unknown |
| Modifier and Type | Method and Description |
|---|---|
static BetSettlementCertainty |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BetSettlementCertainty[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BetSettlementCertainty LiveScouted
public static final BetSettlementCertainty Confirmed
public static final BetSettlementCertainty Unknown
public static BetSettlementCertainty[] values()
for (BetSettlementCertainty c : BetSettlementCertainty.values()) System.out.println(c);
public static BetSettlementCertainty 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–2025. All rights reserved.