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