Package org.bitcoinj.core
Enum BloomFilter.BloomUpdate
- java.lang.Object
-
- java.lang.Enum<BloomFilter.BloomUpdate>
-
- org.bitcoinj.core.BloomFilter.BloomUpdate
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<BloomFilter.BloomUpdate>
- Enclosing class:
- BloomFilter
public static enum BloomFilter.BloomUpdate extends java.lang.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 P2PK outputs (default)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description UPDATE_ALL
UPDATE_NONE
UPDATE_P2PUBKEY_ONLY
Only adds outpoints to the filter if the output is a P2PK/pay-to-multisig script
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BloomFilter.BloomUpdate
valueOf(java.lang.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.
-
-
-
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 P2PK/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(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-