Enum Class AddressType

java.lang.Object
java.lang.Enum<AddressType>
com.barbantfintech.tools.common.cryptojdk.enums.AddressType
All Implemented Interfaces:
Serializable, Comparable<AddressType>, Constable

public enum AddressType extends Enum<AddressType>
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 BIP44
  • P2WPKH_NATIVE_SEGWIT - P2WPKH (Pay to Witness Public Key Hash) native SegWit addresses as per BIP84
See Also:
  • Enum Constant Details

    • P2PKH_LEGACY

      public static final AddressType P2PKH_LEGACY
      BIP44 - Multi-Account Hierarchy for Deterministic Wallets.

      Pay to Public Key Hash (P2PKH) legacy address.

    • P2WPKH_NATIVE_SEGWIT

      public static final AddressType P2WPKH_NATIVE_SEGWIT
      BIP84 - Derivation scheme for P2WPKH based accounts.

      Pay to Witness Public Key Hash (P2WPKH) native SegWit address.

  • Method Details

    • values

      public static AddressType[] 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

      public static AddressType valueOf(String name)
      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 name
      NullPointerException - if the argument is null