public static enum Script.ScriptType extends java.lang.Enum<Script.ScriptType>
Enum Constant and Description |
---|
P2PK |
P2PKH |
P2SH |
P2TR |
P2WPKH |
P2WSH |
Modifier and Type | Field and Description |
---|---|
int |
id |
Modifier and Type | Method and Description |
---|---|
static Script.ScriptType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Script.ScriptType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Script.ScriptType P2PKH
public static final Script.ScriptType P2PK
public static final Script.ScriptType P2SH
public static final Script.ScriptType P2WPKH
public static final Script.ScriptType P2WSH
public static final Script.ScriptType P2TR
public static Script.ScriptType[] values()
for (Script.ScriptType c : Script.ScriptType.values()) System.out.println(c);
public static Script.ScriptType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null