SYMBOL INDEX (355 symbols across 37 files) FILE: src/main/java/info/blockchain/api/APIException.java class APIException (line 8) | public class APIException extends Exception { method APIException (line 11) | public APIException (String message) { FILE: src/main/java/info/blockchain/api/HttpClient.java class HttpClient (line 15) | public class HttpClient implements HttpClientInterface { method getInstance (line 22) | public synchronized static HttpClientInterface getInstance () { method setCustomHttpClient (line 34) | public static void setCustomHttpClient (HttpClientInterface httpClient) { method get (line 46) | public String get (String resource, Map params) throws... method get (line 50) | public String get (String baseURL, String resource, Map params) throw... method post (line 67) | public String post (String baseURL, String resource, Map params) { method inputStreamToString (line 156) | private static String inputStreamToString (InputStream is) throws IOEx... FILE: src/main/java/info/blockchain/api/HttpClientInterface.java type HttpClientInterface (line 11) | public interface HttpClientInterface { method get (line 13) | String get (String resource, Map params) throws APIExc... method get (line 15) | String get (String baseURL, String resource, Map param... method post (line 17) | String post (String resource, Map params) throws APIEx... method post (line 19) | String post (String baseURL, String resource, Map para... FILE: src/main/java/info/blockchain/api/OkClient.java class OkClient (line 16) | public class OkClient implements HttpClientInterface { method OkClient (line 28) | private OkClient() { method getOkClientInstance (line 38) | public synchronized static OkClient getOkClientInstance() { method getOkHttpClientInstance (line 48) | private synchronized static OkHttpClient getOkHttpClientInstance() { method get (line 66) | @Override method get (line 86) | @Override method getInternal (line 97) | private String getInternal(HttpUrl url) throws IOException { method post (line 116) | @Override method post (line 133) | @Override method postInternal (line 140) | private String postInternal(HttpUrl url, Map params) t... method makeRequest (line 154) | private String makeRequest(Request request) throws IOException { method getHttpUrlBuilder (line 164) | private HttpUrl.Builder getHttpUrlBuilder(String resource) { method getHttpUrlBuilder (line 173) | private HttpUrl.Builder getHttpUrlBuilder(String baseURL, String resou... method isNotSuccessfulResponse (line 185) | private boolean isNotSuccessfulResponse(Response response) { FILE: src/main/java/info/blockchain/api/Util.java class Util (line 3) | public class Util { FILE: src/main/java/info/blockchain/api/blockexplorer/BlockExplorer.java class BlockExplorer (line 19) | public class BlockExplorer { method BlockExplorer (line 22) | public BlockExplorer () { method BlockExplorer (line 29) | public BlockExplorer (String apiCode) { method getTransaction (line 41) | @Deprecated method getTransaction (line 53) | public Transaction getTransaction (String txHash) throws APIException,... method getBlock (line 67) | @Deprecated method getBlock (line 79) | public Block getBlock (String blockHash) throws APIException, IOExcept... method getAddress (line 95) | public Address getAddress (String address, FilterType filter, Integer ... method getAddress (line 119) | public Address getAddress (String address) throws APIException, IOExce... method getBlocksAtHeight (line 131) | public List getBlocksAtHeight (long height) throws APIException... method getUnspentOutputs (line 153) | public List getUnspentOutputs (List addressList... method getUnspentOutputs (line 191) | public List getUnspentOutputs (String address) throws A... method getLatestBlock (line 201) | public LatestBlock getLatestBlock () throws APIException, IOException { method getUnconfirmedTransactions (line 213) | public List getUnconfirmedTransactions () throws APIExcep... method getBlocks (line 233) | public List getBlocks () throws APIException, IOException { method getBlocks (line 244) | public List getBlocks (long timestamp) throws APIExceptio... method getBlocks (line 255) | public List getBlocks (String poolName) throws APIExcepti... method getBalance (line 276) | public Map getBalance(List addressList, Filte... method getMultiAddress (line 306) | public MultiAddress getMultiAddress(List addressList, FilterTy... method getXpub (line 335) | public XpubFull getXpub(String xpub, FilterType filter, Integer limit,... method buildBasicRequest (line 341) | private Map buildBasicRequest () { FILE: src/main/java/info/blockchain/api/blockexplorer/entity/Address.java class Address (line 12) | public class Address { method Address (line 21) | public Address (String hash160, String address, long totalReceived, lo... method Address (line 31) | public Address (JsonObject a) { method equals (line 49) | @Override method hashCode (line 76) | @Override method getHash160 (line 89) | public String getHash160 () { method getAddress (line 96) | public String getAddress () { method getTotalReceived (line 103) | public long getTotalReceived () { method getTotalSent (line 110) | public long getTotalSent () { method getFinalBalance (line 117) | public long getFinalBalance () { method getTxCount (line 124) | public int getTxCount () { method getTransactions (line 131) | public List getTransactions () { FILE: src/main/java/info/blockchain/api/blockexplorer/entity/AddressSummary.java class AddressSummary (line 5) | public class AddressSummary { method AddressSummary (line 16) | public AddressSummary (String address, int txCount, long totalReceived... method AddressSummary (line 28) | public AddressSummary (JsonObject json) { method getAddress (line 41) | public String getAddress() { method getTxCount (line 45) | public int getTxCount() { method setTxCount (line 49) | public void setTxCount(int txCount) { method getTotalReceived (line 53) | public long getTotalReceived() { method getTotalSent (line 57) | public long getTotalSent() { method getFinalBalance (line 61) | public long getFinalBalance() { method getChangeIndex (line 65) | public int getChangeIndex() { method getAccountIndex (line 69) | public int getAccountIndex() { method setFinalBalance (line 73) | public void setFinalBalance(long final_balance) { method setAddress (line 77) | public void setAddress(String address) { method setTotalReceived (line 81) | public void setTotalReceived(long total_received) { method setTotalSent (line 85) | public void setTotalSent(long total_sent) { method setChangeIndex (line 89) | public void setChangeIndex(int change_index) { method setAccountIndex (line 93) | public void setAccountIndex(int account_index) { method getGapLimit (line 97) | public int getGapLimit () { method setGapLimit (line 101) | public void setGapLimit (int gapLimit) { FILE: src/main/java/info/blockchain/api/blockexplorer/entity/Balance.java class Balance (line 5) | public class Balance { method Balance (line 11) | public Balance (long finalBalance, long txCount, long totalReceived) { method Balance (line 17) | public Balance (JsonObject json) { method getFinalBalance (line 26) | public long getFinalBalance() { method getTxCount (line 30) | public long getTxCount() { method getTotalReceived (line 34) | public long getTotalReceived() { method setFinalBalance (line 38) | public void setFinalBalance(long final_balance) { method setTxCount (line 42) | public void setTxCount(long n_tx) { method setTotalReceived (line 46) | public void setTotalReceived(long total_received) { FILE: src/main/java/info/blockchain/api/blockexplorer/entity/Block.java class Block (line 13) | public class Block extends SimpleBlock { method Block (line 26) | public Block (long height, String hash, long time, boolean mainChain, ... method Block (line 41) | public Block (JsonObject b) { method equals (line 50) | @Override method hashCode (line 86) | @Override method getVersion (line 101) | public int getVersion () { method getPreviousBlockHash (line 108) | public String getPreviousBlockHash () { method getMerkleRoot (line 115) | public String getMerkleRoot () { method getBits (line 122) | public long getBits () { method getFees (line 129) | public long getFees () { method getNonce (line 136) | public long getNonce () { method getSize (line 143) | public long getSize () { method getIndex (line 150) | public long getIndex () { method getReceivedTime (line 157) | public long getReceivedTime () { method getRelayedBy (line 164) | public String getRelayedBy () { method getTransactions (line 171) | public List getTransactions () { FILE: src/main/java/info/blockchain/api/blockexplorer/entity/FilterType.java type FilterType (line 3) | public enum FilterType { method FilterType (line 10) | FilterType (Integer filterInt) { method getFilterInt (line 14) | public Integer getFilterInt () { FILE: src/main/java/info/blockchain/api/blockexplorer/entity/Input.java class Input (line 9) | public class Input { method Input (line 14) | public Input (Output previousOutput, long sequence, String scriptSigna... method Input (line 20) | public Input (JsonObject i) { method getPreviousOutput (line 32) | public Output getPreviousOutput () { method getSequence (line 39) | public long getSequence () { method getScriptSignature (line 46) | public String getScriptSignature () { method equals (line 50) | @Override method hashCode (line 76) | @Override FILE: src/main/java/info/blockchain/api/blockexplorer/entity/LatestBlock.java class LatestBlock (line 12) | public class LatestBlock extends SimpleBlock { method LatestBlock (line 16) | public LatestBlock (long height, String hash, long time, boolean mainC... method LatestBlock (line 22) | public LatestBlock (JsonObject b) { method getTransactionIndexes (line 34) | public List getTransactionIndexes () { method getIndex (line 41) | public long getIndex () { method equals (line 45) | @Override method hashCode (line 66) | @Override FILE: src/main/java/info/blockchain/api/blockexplorer/entity/MultiAddress.java class MultiAddress (line 9) | public class MultiAddress { method MultiAddress (line 17) | public MultiAddress (MultiAddressBalance multiAddressBalance, List getAddresses() { method getTxs (line 49) | public List getTxs() { method setMultiAddressBalance (line 53) | public void setMultiAddressBalance (MultiAddressBalance multiAddressBa... method setAddresses (line 57) | public void setAddresses(List addresses) { method setTxs (line 61) | public void setTxs(List txs) { FILE: src/main/java/info/blockchain/api/blockexplorer/entity/MultiAddressBalance.java class MultiAddressBalance (line 5) | public class MultiAddressBalance { method MultiAddressBalance (line 13) | public MultiAddressBalance (int txCount, int txCountFiltered, long tot... method MultiAddressBalance (line 21) | public MultiAddressBalance (JsonObject json) { method getTxCount (line 31) | public int getTxCount() { method setTxCount (line 35) | public void setTxCount(int txCount) { method getTotalReceived (line 39) | public long getTotalReceived() { method getTotalSent (line 43) | public long getTotalSent() { method getFinalBalance (line 47) | public long getFinalBalance() { method setFinalBalance (line 51) | public void setFinalBalance(long final_balance) { method setTotalReceived (line 55) | public void setTotalReceived(long total_received) { method setTotalSent (line 59) | public void setTotalSent(long total_sent) { method getTxCountFiltered (line 63) | public int getTxCountFiltered () { method setTxCountFiltered (line 67) | public void setTxCountFiltered (int txCountFiltered) { FILE: src/main/java/info/blockchain/api/blockexplorer/entity/Output.java class Output (line 8) | public class Output { method Output (line 17) | public Output (int n, long value, String address, long txIndex, String... method equals (line 29) | @Override method hashCode (line 54) | @Override method Output (line 63) | public Output (JsonObject o) { method Output (line 67) | public Output (JsonObject o, boolean spent) { method getN (line 74) | public int getN () { method getValue (line 81) | public long getValue () { method getAddress (line 88) | public String getAddress () { method getTxIndex (line 95) | public long getTxIndex () { method getScript (line 102) | public String getScript () { method isSpent (line 109) | public boolean isSpent () { method isSpentToAddress (line 116) | public boolean isSpentToAddress () { FILE: src/main/java/info/blockchain/api/blockexplorer/entity/SimpleBlock.java class SimpleBlock (line 8) | public class SimpleBlock { method SimpleBlock (line 14) | public SimpleBlock (long height, String hash, long time, boolean mainC... method SimpleBlock (line 21) | public SimpleBlock (JsonObject b) { method equals (line 25) | @Override method hashCode (line 49) | @Override method getHeight (line 61) | public long getHeight () { method getHash (line 68) | public String getHash () { method getTime (line 75) | public long getTime () { method isMainChain (line 82) | public boolean isMainChain () { FILE: src/main/java/info/blockchain/api/blockexplorer/entity/Transaction.java class Transaction (line 12) | public class Transaction { method Transaction (line 25) | public Transaction (boolean doubleSpend, long blockHeight, long time, ... method Transaction (line 40) | public Transaction (JsonObject t) { method Transaction (line 45) | public Transaction (JsonObject t, long blockHeight, boolean doubleSpen... method equals (line 61) | @Override method hashCode (line 91) | @Override method isDoubleSpend (line 105) | public boolean isDoubleSpend () { method getBlockHeight (line 112) | public long getBlockHeight () { method getTime (line 119) | public long getTime () { method getLockTime (line 126) | public long getLockTime () { method getRelayedBy (line 133) | public String getRelayedBy () { method getHash (line 140) | public String getHash () { method getIndex (line 147) | public long getIndex () { method getVersion (line 154) | public int getVersion () { method getSize (line 161) | public long getSize () { method getInputs (line 168) | public List getInputs () { method getOutputs (line 175) | public List getOutputs () { FILE: src/main/java/info/blockchain/api/blockexplorer/entity/UnspentOutput.java class UnspentOutput (line 8) | public class UnspentOutput { method UnspentOutput (line 16) | public UnspentOutput (int n, String transactionHash, long transactionI... method UnspentOutput (line 25) | public UnspentOutput (JsonObject o) { method equals (line 29) | @Override method hashCode (line 53) | @Override method getN (line 65) | public int getN () { method getTransactionHash (line 72) | public String getTransactionHash () { method getTransactionIndex (line 79) | public long getTransactionIndex () { method getScript (line 86) | public String getScript () { method getValue (line 93) | public long getValue () { method getConfirmations (line 100) | public long getConfirmations () { FILE: src/main/java/info/blockchain/api/blockexplorer/entity/XpubFull.java class XpubFull (line 9) | public class XpubFull { method XpubFull (line 21) | public XpubFull (String address, int txCount, long totalReceived, long... method XpubFull (line 34) | public XpubFull (AddressSummary addressSummary, List txs) { method XpubFull (line 46) | public XpubFull (JsonObject json) { method getAddress (line 66) | public String getAddress() { method getTxCount (line 70) | public int getTxCount() { method setTxCount (line 74) | public void setTxCount(int txCount) { method getTotalReceived (line 78) | public long getTotalReceived() { method getTotalSent (line 82) | public long getTotalSent() { method getFinalBalance (line 86) | public long getFinalBalance() { method getChangeIndex (line 90) | public int getChangeIndex() { method getAccountIndex (line 94) | public int getAccountIndex() { method setFinalBalance (line 98) | public void setFinalBalance(long final_balance) { method setAddress (line 102) | public void setAddress(String address) { method setTotalReceived (line 106) | public void setTotalReceived(long total_received) { method setTotalSent (line 110) | public void setTotalSent(long total_sent) { method setChangeIndex (line 114) | public void setChangeIndex(int change_index) { method setAccountIndex (line 118) | public void setAccountIndex(int account_index) { method getGapLimit (line 122) | public int getGapLimit () { method setGapLimit (line 126) | public void setGapLimit (int gapLimit) { method getTxs (line 130) | public List getTxs () { method setTxs (line 134) | public void setTxs (List txs) { FILE: src/main/java/info/blockchain/api/etc/Base58.java class Base58 (line 46) | public class Base58 { method encode (line 64) | public static String encode (byte[] input) { method decode (line 101) | public static byte[] decode (String input) throws ParseException { method decodeToBigInteger (line 137) | public static BigInteger decodeToBigInteger (String input) throws Pars... method decodeChecked (line 149) | public static byte[] decodeChecked (String input) throws ParseException { method divmod (line 175) | private static byte divmod (byte[] number, int firstDigit, int base, i... method hashTwice (line 187) | public static byte[] hashTwice (byte[] input) { FILE: src/main/java/info/blockchain/api/exchangerates/Currency.java class Currency (line 8) | public class Currency { method Currency (line 15) | public Currency (double buy, double sell, double last, double price15m... method getBuy (line 26) | public BigDecimal getBuy () { method getSell (line 33) | public BigDecimal getSell () { method getLast (line 40) | public BigDecimal getLast () { method getPrice15m (line 47) | public BigDecimal getPrice15m () { method getSymbol (line 54) | public String getSymbol () { FILE: src/main/java/info/blockchain/api/exchangerates/ExchangeRates.java class ExchangeRates (line 20) | public class ExchangeRates { method ExchangeRates (line 24) | public ExchangeRates () { method ExchangeRates (line 28) | public ExchangeRates (String apiCode) { method getTicker (line 39) | public Map getTicker () throws APIException, IOExcep... method toBTC (line 67) | public BigDecimal toBTC (String currency, BigDecimal value) throws API... method toFiat (line 87) | public BigDecimal toFiat (String currency, BigDecimal value) throws AP... FILE: src/main/java/info/blockchain/api/pushtx/PushTx.java class PushTx (line 15) | public class PushTx { method pushTx (line 22) | public static void pushTx (String tx) throws APIException, IOException { method pushTx (line 33) | public static void pushTx (String tx, String apiCode) throws APIExcept... FILE: src/main/java/info/blockchain/api/receive/CallbackLog.java class CallbackLog (line 5) | public class CallbackLog { method CallbackLog (line 11) | public CallbackLog (JsonObject callbackJson) { method CallbackLog (line 20) | public CallbackLog (String callback, String callbackTime, String respo... method getCallback (line 27) | public String getCallback () { method setCallback (line 31) | public void setCallback (String callback) { method getCallbackTime (line 35) | public String getCallbackTime () { method setCallbackTime (line 39) | public void setCallbackTime (String callbackTime) { method getResponse (line 43) | public String getResponse () { method setResponse (line 47) | public void setResponse (String response) { method getResponseCode (line 51) | public int getResponseCode () { method setResponseCode (line 55) | public void setResponseCode (int responseCode) { FILE: src/main/java/info/blockchain/api/receive/Receive.java class Receive (line 18) | public class Receive { method Receive (line 24) | public Receive (String apiCode) { method receive (line 36) | public ReceiveResponse receive (String xPUB, String callbackUrl) throw... method checkGap (line 56) | public int checkGap (String xPUB) throws APIException, IOException { method getCallbackLog (line 74) | public CallbackLog getCallbackLog (String callbackUrl) throws APIExcep... FILE: src/main/java/info/blockchain/api/receive/ReceiveResponse.java class ReceiveResponse (line 6) | public class ReceiveResponse { method ReceiveResponse (line 11) | public ReceiveResponse (int index, String receivingAddress, String cal... method getIndex (line 20) | public int getIndex () { method getReceivingAddress (line 27) | public String getReceivingAddress () { method getCallbackUrl (line 34) | public String getCallbackUrl () { FILE: src/main/java/info/blockchain/api/statistics/Chart.java class Chart (line 9) | public class Chart { method Chart (line 18) | public Chart (JsonObject chartJson) { method Chart (line 30) | public Chart (String status, String name, String unit, String period, ... method getPoints (line 39) | private List getPoints(JsonObject chartJson) { method getStatus (line 49) | public String getStatus() { method getName (line 53) | public String getName() { method getUnit (line 57) | public String getUnit() { method getPeriod (line 61) | public String getPeriod() { method getDescription (line 65) | public String getDescription() { method getValues (line 69) | public List getValues() { FILE: src/main/java/info/blockchain/api/statistics/Point.java class Point (line 5) | public class Point { method Point (line 10) | public Point (JsonObject pointJson) { method Point (line 17) | public Point (float x, float y) { method getX (line 22) | public float getX() { method getY (line 26) | public float getY() { FILE: src/main/java/info/blockchain/api/statistics/Statistics.java class Statistics (line 19) | public class Statistics { method Statistics (line 22) | public Statistics () { method Statistics (line 26) | public Statistics (String apiCode) { method getStats (line 36) | public StatisticsResponse getStats () throws APIException, IOException { method getChart (line 56) | public Chart getChart(String type, String timeSpan, String rollingAver... method getPools (line 82) | public Map getPools(String timeSpan) throws APIExcept... FILE: src/main/java/info/blockchain/api/statistics/StatisticsResponse.java class StatisticsResponse (line 11) | public class StatisticsResponse { method StatisticsResponse (line 33) | public StatisticsResponse (String jsonString) { method getTradeVolumeBTC (line 61) | public BigDecimal getTradeVolumeBTC () { method getTradeVolumeUSD (line 68) | public BigDecimal getTradeVolumeUSD () { method getMinersRevenueBTC (line 75) | public BigDecimal getMinersRevenueBTC () { method getMinersRevenueUSD (line 82) | public BigDecimal getMinersRevenueUSD () { method getMarketPriceUSD (line 89) | public BigDecimal getMarketPriceUSD () { method getEstimatedTransactionVolumeUSD (line 96) | public BigDecimal getEstimatedTransactionVolumeUSD () { method getTotalFeesBTC (line 103) | public long getTotalFeesBTC () { method getTotalBTCSent (line 110) | public long getTotalBTCSent () { method getEstimatedBTCSent (line 117) | public long getEstimatedBTCSent () { method getBTCMined (line 124) | public long getBTCMined () { method getDifficulty (line 131) | public double getDifficulty () { method getMinutesBetweenBlocks (line 138) | public double getMinutesBetweenBlocks () { method getNumberOfTransactions (line 145) | public long getNumberOfTransactions () { method getHashRate (line 152) | public double getHashRate () { method getTimestamp (line 159) | public long getTimestamp () { method getMinedBlocks (line 166) | public long getMinedBlocks () { method getBlocksSize (line 173) | public long getBlocksSize () { method getTotalBTC (line 180) | public long getTotalBTC () { method getTotalBlocks (line 187) | public long getTotalBlocks () { method getNextRetarget (line 194) | public long getNextRetarget () { FILE: src/main/java/info/blockchain/api/wallet/Wallet.java class Wallet (line 27) | public class Wallet { method create (line 45) | public static CreateWalletResponse create (String serviceURL, String p... method create (line 63) | public static CreateWalletResponse create (String serviceURL, String p... method Wallet (line 94) | public Wallet (String serviceURL, String apiCode, String identifier, S... method Wallet (line 105) | public Wallet (String serviceURL, String apiCode, String identifier, S... method send (line 124) | public PaymentResponse send (String toAddress, long amount, String fro... method sendMany (line 141) | public PaymentResponse sendMany (Map recipients, String ... method getBalance (line 175) | public long getBalance () throws APIException, IOException { method listAddresses (line 188) | public List
listAddresses () throws APIException, IOException { method getAddress (line 212) | public Address getAddress (String address) throws APIException, IOExce... method newAddress (line 229) | public Address newAddress (String label) throws APIException, IOExcept... method archiveAddress (line 248) | public String archiveAddress (String address) throws APIException, IOE... method unarchiveAddress (line 265) | public String unarchiveAddress (String address) throws APIException, I... method buildBasicRequest (line 275) | private Map buildBasicRequest () { method buildBasicRequestWithSecondPassword (line 286) | private Map buildBasicRequestWithSecondPassword () { method parseResponse (line 295) | private JsonObject parseResponse (String response) throws APIException { method equals (line 304) | @Override method hashCode (line 318) | @Override FILE: src/main/java/info/blockchain/api/wallet/entity/Address.java class Address (line 6) | public class Address { method Address (line 12) | public Address (long balance, String address, String label, long total... method equals (line 19) | @Override method hashCode (line 43) | @Override method getBalance (line 55) | public long getBalance () { method getAddress (line 62) | public String getAddress () { method getLabel (line 69) | public String getLabel () { method getTotalReceived (line 76) | public long getTotalReceived () { FILE: src/main/java/info/blockchain/api/wallet/entity/CreateWalletResponse.java class CreateWalletResponse (line 6) | public class CreateWalletResponse { method CreateWalletResponse (line 11) | public CreateWalletResponse (String identifier, String address, String... method getIdentifier (line 20) | public String getIdentifier () { method getAddress (line 27) | public String getAddress () { method getLable (line 34) | public String getLable () { FILE: src/main/java/info/blockchain/api/wallet/entity/PaymentResponse.java class PaymentResponse (line 6) | public class PaymentResponse { method PaymentResponse (line 11) | public PaymentResponse (String message, String txHash, String notice) { method equals (line 17) | @Override method getMessage (line 32) | public String getMessage () { method getTxHash (line 39) | public String getTxHash () { method getNotice (line 46) | public String getNotice () { FILE: src/test/java/info/blockchain/api/AppTest.java class AppTest (line 10) | public class AppTest extends TestCase { method AppTest (line 16) | public AppTest (String testName) { method suite (line 23) | public static Test suite () { method testApp (line 30) | public void testApp () { FILE: src/test/java/info/blockchain/api/blockexplorer/BlockExplorerTest.java class BlockExplorerTest (line 17) | public class BlockExplorerTest { method setUp (line 21) | @Before method getAddress (line 26) | @Test method getUnspentOutputs (line 40) | @Test method getBalance (line 51) | @Test method getXpub (line 68) | @Test