|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Wallet.BalanceType>
com.google.bitcoin.core.Wallet.BalanceType
public static enum Wallet.BalanceType
It's possible to calculate a wallets balance from multiple points of view. This enum selects which getBalance() should use.
Consider a real-world example: you buy a snack costing $5 but you only have a $10 bill. At the start you have $10 viewed from every possible angle. After you order the snack you hand over your $10 bill. From the perspective of your wallet you have zero dollars (AVAILABLE). But you know in a few seconds the shopkeeper will give you back $5 change so most people in practice would say they have $5 (ESTIMATED).
Enum Constant Summary | |
---|---|
AVAILABLE
Balance that can be safely used to create new spends. |
|
ESTIMATED
Balance calculated assuming all pending transactions are in fact included into the best chain by miners. |
Method Summary | |
---|---|
static Wallet.BalanceType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Wallet.BalanceType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Wallet.BalanceType ESTIMATED
public static final Wallet.BalanceType AVAILABLE
Method Detail |
---|
public static Wallet.BalanceType[] values()
for (Wallet.BalanceType c : Wallet.BalanceType.values()) System.out.println(c);
public static Wallet.BalanceType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |