Package org.ldk.enums
Enum ConfirmationTarget
- java.lang.Object
-
- java.lang.Enum<ConfirmationTarget>
-
- org.ldk.enums.ConfirmationTarget
-
- All Implemented Interfaces:
Serializable
,Comparable<ConfirmationTarget>
public enum ConfirmationTarget extends Enum<ConfirmationTarget>
An enum that represents the speed at which we want a transaction to confirm used for feerate estimation.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LDKConfirmationTarget_Background
We are happy with this transaction confirming slowly when feerate drops some.LDKConfirmationTarget_HighPriority
We'd like this transaction to confirm in the next few blocks.LDKConfirmationTarget_Normal
We'd like this transaction to confirm without major delay, but 12-18 blocks is fine.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ConfirmationTarget
valueOf(String name)
Returns the enum constant of this type with the specified name.static ConfirmationTarget[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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 nameNullPointerException
- if the argument is null
-
-