Enum Class AddressType
- All Implemented Interfaces:
Serializable
,Comparable<AddressType>
,Constable
Enum representing different types of blockchain addresses.
Address types are used to specify the type of address generation scheme in use.
P2PKH_LEGACY
- P2PKH (Pay to Public Key Hash) legacy addresses as per BIP44P2WPKH_NATIVE_SEGWIT
- P2WPKH (Pay to Witness Public Key Hash) native SegWit addresses as per BIP84
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionBIP44 - Multi-Account Hierarchy for Deterministic Wallets.BIP84 - Derivation scheme for P2WPKH based accounts. -
Method Summary
Modifier and TypeMethodDescriptionstatic AddressType
Returns the enum constant of this class with the specified name.static AddressType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
P2PKH_LEGACY
BIP44 - Multi-Account Hierarchy for Deterministic Wallets.Pay to Public Key Hash (P2PKH) legacy address.
-
P2WPKH_NATIVE_SEGWIT
BIP84 - Derivation scheme for P2WPKH based accounts.Pay to Witness Public Key Hash (P2WPKH) native SegWit address.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-