public static enum Script.VerifyFlag extends Enum<Script.VerifyFlag>
Script.correctlySpends(Transaction, long, Script, Set)
.
Note currently only P2SH, DERSIG and NULLDUMMY are actually supported.Enum Constant and Description |
---|
CHECKLOCKTIMEVERIFY |
CLEANSTACK |
DERSIG |
DISCOURAGE_UPGRADABLE_NOPS |
LOW_S |
MINIMALDATA |
NULLDUMMY |
P2SH |
SIGPUSHONLY |
STRICTENC |
Modifier and Type | Method and Description |
---|---|
static Script.VerifyFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Script.VerifyFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Script.VerifyFlag P2SH
public static final Script.VerifyFlag STRICTENC
public static final Script.VerifyFlag DERSIG
public static final Script.VerifyFlag LOW_S
public static final Script.VerifyFlag NULLDUMMY
public static final Script.VerifyFlag SIGPUSHONLY
public static final Script.VerifyFlag MINIMALDATA
public static final Script.VerifyFlag DISCOURAGE_UPGRADABLE_NOPS
public static final Script.VerifyFlag CLEANSTACK
public static final Script.VerifyFlag CHECKLOCKTIMEVERIFY
public static Script.VerifyFlag[] values()
for (Script.VerifyFlag c : Script.VerifyFlag.values()) System.out.println(c);
public static Script.VerifyFlag valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2016. All rights reserved.