ScriptBuilder |
ScriptBuilder.addChunk(int index,
ScriptChunk chunk) |
Adds the given chunk at the given index in the program
添加创建好的命令到指定的下表
|
ScriptBuilder |
ScriptBuilder.addChunk(ScriptChunk chunk) |
Adds the given chunk to the end of the program
|
protected ScriptBuilder |
ScriptBuilder.bigNum(int index,
long num) |
Adds the given number as a push entity chunk to the given index in the program.
|
protected ScriptBuilder |
ScriptBuilder.bigNum(long num) |
Adds the given number as a push entity chunk.
|
ScriptBuilder |
ScriptBuilder.data(byte[] data) |
Adds a copy of the given byte array as a entity element (i.e.
|
ScriptBuilder |
ScriptBuilder.data(int index,
byte[] data) |
Adds a copy of the given byte array as a entity element (i.e.
|
ScriptBuilder |
ScriptBuilder.number(int index,
long num) |
Adds the given number to the given index in the program.
|
ScriptBuilder |
ScriptBuilder.number(long num) |
Adds the given number to the end of the program.
|
ScriptBuilder |
ScriptBuilder.op(int opcode) |
Adds the given opcode to the end of the program.
|
ScriptBuilder |
ScriptBuilder.op(int index,
int opcode) |
Adds the given opcode to the given index in the program
添加指定命令到列表指定位置
|
ScriptBuilder |
ScriptBuilder.smallNum(int num) |
Adds the given number as a OP_N opcode to the end of the program.
|
ScriptBuilder |
ScriptBuilder.smallNum(int index,
int num) |
Adds the given number as a OP_N opcode to the given index in the program.
|