Interface Parameter
-
- All Known Implementing Classes:
AbstractParameter,FunctionParameter,GenericParameter
public interface Parameterthis interface represents all kind of possible parameters to madx-commands
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Stringcompose()has to be implemented in subclass to return the correct "name=value" - syntax.booleanisSet()has to be implemented in subclass to determine if the parameter is set or not.
-
-
-
Method Detail
-
compose
java.lang.String compose()
has to be implemented in subclass to return the correct "name=value" - syntax.- Returns:
- a string representing the correct syntax for MadX
-
isSet
boolean isSet()
has to be implemented in subclass to determine if the parameter is set or not.- Returns:
- true, if set, false otherwise.
-
-