com.google.bitcoin.core
Enum BloomFilter.BloomUpdate

java.lang.Object
  extended by java.lang.Enum<BloomFilter.BloomUpdate>
      extended by com.google.bitcoin.core.BloomFilter.BloomUpdate
All Implemented Interfaces:
Serializable, Comparable<BloomFilter.BloomUpdate>
Enclosing class:
BloomFilter

public static enum BloomFilter.BloomUpdate
extends Enum<BloomFilter.BloomUpdate>

The BLOOM_UPDATE_* constants control when the bloom filter is auto-updated by the peer using it as a filter, either never, for all outputs or only for pay-2-pubkey outputs (default)


Enum Constant Summary
UPDATE_ALL
           
UPDATE_NONE
           
UPDATE_P2PUBKEY_ONLY
          Only adds outpoints to the filter if the output is a pay-to-pubkey/pay-to-multisig script
 
Method Summary
static BloomFilter.BloomUpdate valueOf(String name)
          Returns the enum constant of this type with the specified name.
static BloomFilter.BloomUpdate[] 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

UPDATE_NONE

public static final BloomFilter.BloomUpdate UPDATE_NONE

UPDATE_ALL

public static final BloomFilter.BloomUpdate UPDATE_ALL

UPDATE_P2PUBKEY_ONLY

public static final BloomFilter.BloomUpdate UPDATE_P2PUBKEY_ONLY
Only adds outpoints to the filter if the output is a pay-to-pubkey/pay-to-multisig script

Method Detail

values

public static BloomFilter.BloomUpdate[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (BloomFilter.BloomUpdate c : BloomFilter.BloomUpdate.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static BloomFilter.BloomUpdate valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2014. All rights reserved.