com.google.bitcoin.core
Enum BloomFilter.BloomUpdate
java.lang.Object
java.lang.Enum<BloomFilter.BloomUpdate>
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)
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
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.