Interface MarshallableParameter
- All Known Implementing Classes:
DummyParameters
,IdentificationParameters
,SearchParameters
public interface MarshallableParameter
Interface for a parameter which can be marshalled as .par file.
- Author:
- Marc Vaudel
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
MarshallableParameter.Type
Enum of the type of parameter which can be encountered in a .par file. -
Method Summary
Modifier and Type Method Description MarshallableParameter.Type
getType()
Returns the type of marshalled parameter from an unmarshalled object.void
setType()
Sets the parameters type.
-
Method Details
-
setType
void setType()Sets the parameters type. The type must be set before writing a file but not in the constructor. -
getType
MarshallableParameter.Type getType()Returns the type of marshalled parameter from an unmarshalled object. The type must be written in the file but not set in the constructor. Null if not a MarshallableParameter.- Returns:
- the type of marshalled parameter from an unmarshalled object
-