クラス
org.monache.lib.api.CoinAPIException の使用

CoinAPIException を使用しているパッケージ
org.monache.lib.api   
org.monache.lib.api.impl   
org.monache.lib.api.mock   
 

org.monache.lib.api での CoinAPIException の使用
 

CoinAPIException をスローする org.monache.lib.api のメソッド
 GetBalanceResult GetBalance.call(JsonRPCClient jsonRPCClient)
          ウォレット全体の利用残高を取得します。
 GetNewAddressResult GetNewAddress.call(JsonRPCClient jsonRPCClient)
          新しく受け取り用のアドレスを作成します。
 WalletLockResult WalletLock.call(JsonRPCClient jsonRPCClient)
          アウォレットの複合キーをメモリから削除し、ウォレットをロックします。
 GetBalanceResult GetBalance.call(JsonRPCClient jsonRPCClient, java.lang.String account)
          任意の口座の利用残高を取得します。
 GetNewAddressResult GetNewAddress.call(JsonRPCClient jsonRPCClient, java.lang.String account)
          新しく受け取り用のアドレスを作成し、任意の口座名を設定します。
 SendToAddressResult SendToAddress.call(JsonRPCClient jsonRPCClient, java.lang.String toAddress, java.math.BigDecimal amount)
          送金します。
 SendToAddressResult SendToAddress.call(JsonRPCClient jsonRPCClient, java.lang.String toAddress, java.math.BigDecimal amount, java.lang.String comment, java.lang.String commentTo)
          推奨されていません。 未検証 comment commenTo
 GetBalanceResult GetBalance.call(JsonRPCClient jsonRPCClient, java.lang.String account, java.lang.Integer minconf)
          推奨されていません。 minconfの未検証 任意の口座の利用残高を取得します。
 WalletPassphraseResult WalletPassphrase.call(JsonRPCClient jsonRPCClient, java.lang.String passphrase, java.lang.Integer timeout)
          ウォレットをアンロックするための複合キーをメモリに保存します。
 SendFromResult SendFrom.call(JsonRPCClient jsonRPCClient, java.lang.String fromAccount, java.lang.String toAddress, java.math.BigDecimal amount)
          送金元の口座名を指定して送金します。
 SendFromResult SendFrom.call(JsonRPCClient jsonRPCClient, java.lang.String fromAccount, java.lang.String toAddress, java.math.BigDecimal amount, java.lang.Integer minconf)
          推奨されていません。 未検証 minconf 送金元の口座名を指定して送金します。
 SendFromResult SendFrom.call(JsonRPCClient jsonRPCClient, java.lang.String fromAccount, java.lang.String toAddress, java.math.BigDecimal amount, java.lang.Integer minconf, java.lang.String comment, java.lang.String commentTo)
          推奨されていません。 未検証 minconf comment commentTo 送金元の口座名を指定して送金します。
 SendFromResult SendFrom.call(JsonRPCClient jsonRPCClient, java.lang.String fromAccount, java.lang.String toAddress, java.math.BigDecimal amount, java.lang.String comment, java.lang.String commentTo)
          推奨されていません。 未検証 comment commentTo 送金元の口座名を指定して送金します。
abstract  GetBalance CoinAPIFactory.getGetBalance()
          GetBalanceを実装したオブジェクトを取得します。
abstract  GetNewAddress CoinAPIFactory.getGetNewAddress()
          GetNewAddressを実装したオブジェクトを取得します。
abstract  SendFrom CoinAPIFactory.getSendFrom()
          SendFromを実装したオブジェクトを取得します。
abstract  SendToAddress CoinAPIFactory.getSendToAddress()
          SendToAddressを実装したオブジェクトを取得します。
abstract  WalletLock CoinAPIFactory.getWalletLock()
          WalletLockを実装したオブジェクトを取得します。
abstract  WalletPassphrase CoinAPIFactory.getWalletPassphrase()
          WalletPassphraseを実装したオブジェクトを取得します。
 

org.monache.lib.api.impl での CoinAPIException の使用
 

CoinAPIException をスローする org.monache.lib.api.impl のメソッド
 GetNewAddressResult GetNewAddressImpl.call(JsonRPCClient jsonRPCClient)
           
 GetBalanceResult GetBalanceImpl.call(JsonRPCClient jsonRPCClient)
           
 WalletLockResult WalletLockImpl.call(JsonRPCClient jsonRPCClient)
           
 GetNewAddressResult GetNewAddressImpl.call(JsonRPCClient jsonRPCClient, java.lang.String account)
           
 GetBalanceResult GetBalanceImpl.call(JsonRPCClient jsonRPCClient, java.lang.String account)
           
 SendToAddressResult SendToAddressImpl.call(JsonRPCClient jsonRPCClient, java.lang.String toAddress, java.math.BigDecimal amount)
           
 SendToAddressResult SendToAddressImpl.call(JsonRPCClient jsonRPCClient, java.lang.String toAddress, java.math.BigDecimal amount, java.lang.String comment, java.lang.String commentTo)
           
 GetBalanceResult GetBalanceImpl.call(JsonRPCClient jsonRPCClient, java.lang.String account, java.lang.Integer minconf)
           
 WalletPassphraseResult WalletPassphraseImpl.call(JsonRPCClient jsonRPCClient, java.lang.String passphrase, java.lang.Integer timeout)
           
 SendFromResult SendFromImpl.call(JsonRPCClient jsonRPCClient, java.lang.String fromAccount, java.lang.String toAddress, java.math.BigDecimal amount)
           
 SendFromResult SendFromImpl.call(JsonRPCClient jsonRPCClient, java.lang.String fromAccount, java.lang.String toAddress, java.math.BigDecimal amount, java.lang.Integer minconf)
           
 SendFromResult SendFromImpl.call(JsonRPCClient jsonRPCClient, java.lang.String fromAccount, java.lang.String toAddress, java.math.BigDecimal amount, java.lang.Integer minconf, java.lang.String comment, java.lang.String commentTo)
           
 SendFromResult SendFromImpl.call(JsonRPCClient jsonRPCClient, java.lang.String fromAccount, java.lang.String toAddress, java.math.BigDecimal amount, java.lang.String comment, java.lang.String commentTo)
           
 GetBalance DefaultCoinAPIFactory.getGetBalance()
           
 GetNewAddress DefaultCoinAPIFactory.getGetNewAddress()
           
 SendFrom DefaultCoinAPIFactory.getSendFrom()
           
 SendToAddress DefaultCoinAPIFactory.getSendToAddress()
           
 WalletLock DefaultCoinAPIFactory.getWalletLock()
           
 WalletPassphrase DefaultCoinAPIFactory.getWalletPassphrase()
           
static DefaultCoinAPIFactory DefaultCoinAPIFactory.newInstance()
           
 

org.monache.lib.api.mock での CoinAPIException の使用
 

CoinAPIException をスローする org.monache.lib.api.mock のメソッド
 GetNewAddressResult GetNewAddressMock.call(JsonRPCClient jsonRPCClient)
           
 WalletLockResult WalletLockMock.call(JsonRPCClient jsonRPCClient)
           
 GetBalanceResult GetBalanceMock.call(JsonRPCClient jsonRPCClient)
           
 GetNewAddressResult GetNewAddressMock.call(JsonRPCClient jsonRPCClient, java.lang.String account)
           
 GetBalanceResult GetBalanceMock.call(JsonRPCClient jsonRPCClient, java.lang.String account)
           
 SendToAddressResult SendToAddressMock.call(JsonRPCClient jsonRPCClient, java.lang.String toAddress, java.math.BigDecimal amount)
           
 SendToAddressResult SendToAddressMock.call(JsonRPCClient jsonRPCClient, java.lang.String toAddress, java.math.BigDecimal amount, java.lang.String comment, java.lang.String commentTo)
           
 WalletPassphraseResult WalletPassphraseMock.call(JsonRPCClient jsonRPCClient, java.lang.String passphrase, java.lang.Integer timeout)
           
 GetBalanceResult GetBalanceMock.call(JsonRPCClient jsonRPCClient, java.lang.String account, java.lang.Integer minconf)
           
 SendFromResult SendFromMock.call(JsonRPCClient jsonRPCClient, java.lang.String fromAccount, java.lang.String toAddress, java.math.BigDecimal amount)
           
 SendFromResult SendFromMock.call(JsonRPCClient jsonRPCClient, java.lang.String fromAccount, java.lang.String toAddress, java.math.BigDecimal amount, java.lang.Integer minconf)
           
 SendFromResult SendFromMock.call(JsonRPCClient jsonRPCClient, java.lang.String fromAccount, java.lang.String toAddress, java.math.BigDecimal amount, java.lang.Integer minconf, java.lang.String comment, java.lang.String commentTo)
           
 SendFromResult SendFromMock.call(JsonRPCClient jsonRPCClient, java.lang.String fromAccount, java.lang.String toAddress, java.math.BigDecimal amount, java.lang.String comment, java.lang.String commentTo)
           
 GetBalance MockCoinAPIFactory.getGetBalance()
           
 GetNewAddress MockCoinAPIFactory.getGetNewAddress()
           
 SendFrom MockCoinAPIFactory.getSendFrom()
           
 SendToAddress MockCoinAPIFactory.getSendToAddress()
           
 WalletLock MockCoinAPIFactory.getWalletLock()
           
 WalletPassphrase MockCoinAPIFactory.getWalletPassphrase()
           
static MockCoinAPIFactory MockCoinAPIFactory.newInstance()
           
 



Copyright © 2014. All Rights Reserved.