Package org.ldk.enums

Enum ConfirmationTarget

    • Enum Constant Detail

      • LDKConfirmationTarget_Background

        public static final ConfirmationTarget LDKConfirmationTarget_Background
        We are happy with this transaction confirming slowly when feerate drops some.
      • LDKConfirmationTarget_Normal

        public static final ConfirmationTarget LDKConfirmationTarget_Normal
        We'd like this transaction to confirm without major delay, but 12-18 blocks is fine.
      • LDKConfirmationTarget_HighPriority

        public static final ConfirmationTarget LDKConfirmationTarget_HighPriority
        We'd like this transaction to confirm in the next few blocks.
    • Method Detail

      • values

        public static ConfirmationTarget[] 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 (ConfirmationTarget c : ConfirmationTarget.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ConfirmationTarget 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