Class TransformerArgument
- java.lang.Object
-
- org.hansken.plugin.extraction.api.TransformerArgument
-
public class TransformerArgument extends Object
An argument or return value that can be passed to or returned from a Transformer.- Author:
- Netherlands Forensic Institute
-
-
Constructor Summary
Constructors Constructor Description TransformerArgument(Object argument)Takes an Object and validates if it is of an acceptable transformer argument or return type.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectgetArgument()Retrieves the Transformer argument as an Object.
-
-
-
Constructor Detail
-
TransformerArgument
public TransformerArgument(Object argument)
Takes an Object and validates if it is of an acceptable transformer argument or return type.- Parameters:
argument- The object that is to be passed to or returned from a transformer.
-
-
Method Detail
-
getArgument
public Object getArgument()
Retrieves the Transformer argument as an Object.- Returns:
- The Transformer argument as an Object.
-
-