public abstract class Instruction
extends java.lang.Object
ReproducibleInstances. The instructions are used to store information about the dataset origin and the splits done.
Supported are LoadDataSetInstruction and FoldBasedSubsetInstruction at the moment. | Constructor and Description |
|---|
Instruction() |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getCommand()
Sets command name that specifies the type of instruction represented by the object.
|
java.util.Map<java.lang.String,java.lang.String> |
getInputs()
Inputs are parameters of the instruction.
|
void |
setCommand(java.lang.String command)
Gets command name that specifies the type of instruction represented by the object.
|
void |
setInputs(java.util.Map<java.lang.String,java.lang.String> inputs)
Sets the input parameters that will be used to reproduce the effects done by this instruction.
|
public java.lang.String getCommand()
public void setCommand(java.lang.String command)
command - name of the commandpublic java.util.Map<java.lang.String,java.lang.String> getInputs()
public void setInputs(java.util.Map<java.lang.String,java.lang.String> inputs)
inputs - map of inputs as pairs of to Strings.