public abstract static class Arguments.Argument extends Object
| Modifier | Constructor and Description |
|---|---|
protected |
Argument(String argumentName)
Create argument with name.
|
| Modifier and Type | Method and Description |
|---|---|
protected abstract Arguments.Argument |
clone() |
static Arguments.Argument |
createValueArgument(String argumentName,
Object value)
Create new argument object with specified name and value.
|
static Arguments.Argument |
createVariableArgument(String argumentName,
String variableName)
Create new argument with specified name and its value is defined by
the content of the variable.
|
String |
getName() |
String |
getParameterName()
Deprecated.
Use
getName() instead, wrongly named. |
abstract String |
getParameterVariable()
Is value of this parameter retrieved from variable or value?
|
abstract Object |
getValue()
Retrieve value of parameter.
|
abstract String |
toString() |
protected Argument(String argumentName)
argumentName - public abstract Object getValue()
public abstract String getParameterVariable()
@Deprecated public String getParameterName()
getName() instead, wrongly named.public String getName()
protected abstract Arguments.Argument clone()
public static Arguments.Argument createValueArgument(String argumentName, Object value)
argumentName - name of argument.value - Object representation of the argument valuepublic static Arguments.Argument createVariableArgument(String argumentName, String variableName)
argumentName - name of created argumentvariableName - name of variable that will be used to get the
value.Copyright © 2018 AMIS research group, Faculty of Mathematics and Physics, Charles University in Prague, Czech Republic. All rights reserved.