Uses of Class
net.sf.tweety.plugin.parameter.CommandParameter
-
-
Uses of CommandParameter in net.sf.tweety.cli.plugins
Methods in net.sf.tweety.cli.plugins that return types with arguments of type CommandParameter Modifier and Type Method Description static java.util.ArrayList<CommandParameter>
CliMain. instantiateParameters(TweetyPlugin tp, java.util.ArrayList<java.util.ArrayList<java.lang.String>> inparams)
instantiates each given input parameter within the called plugin - if possible -
Uses of CommandParameter in net.sf.tweety.logics.fol.plugin
Methods in net.sf.tweety.logics.fol.plugin with parameters of type CommandParameter Modifier and Type Method Description PluginOutput
FirstOrderLogicPlugin. execute(java.io.File[] input, CommandParameter[] params)
Executes this plugin with given input files and other aggregated parameters -
Uses of CommandParameter in net.sf.tweety.logics.pl.plugin
Methods in net.sf.tweety.logics.pl.plugin with parameters of type CommandParameter Modifier and Type Method Description PluginOutput
PlPlugin. execute(java.io.File[] input, CommandParameter[] params)
Method to be executed with input files and parameters from tweety cli -
Uses of CommandParameter in net.sf.tweety.logics.rpcl.plugin
Methods in net.sf.tweety.logics.rpcl.plugin with parameters of type CommandParameter Modifier and Type Method Description PluginOutput
RPCLPlugin. execute(java.io.File[] input, CommandParameter[] params)
Executes this plugin with given input files and other aggregated parameters -
Uses of CommandParameter in net.sf.tweety.plugin
Methods in net.sf.tweety.plugin that return CommandParameter Modifier and Type Method Description CommandParameter
AbstractTweetyPlugin. validateParameter(java.lang.String s)
checks, whether each command parameter given with the plugin call is valid within is this pluginMethods in net.sf.tweety.plugin that return types with arguments of type CommandParameter Modifier and Type Method Description java.util.List<CommandParameter>
AbstractTweetyPlugin. getParameters()
returns all possible parametersjava.util.List<CommandParameter>
TweetyPlugin. getParameters()
returns parameters allowed with plugin callsjava.util.ArrayList<CommandParameter>
AbstractTweetyPlugin. validateParameter(java.util.ArrayList<java.lang.String> s)
This method handels instantiations with array-lists instead of a simple string (e.g.Methods in net.sf.tweety.plugin with parameters of type CommandParameter Modifier and Type Method Description void
AbstractTweetyPlugin. addParameter(CommandParameter cmdParameter)
adds new command parameter to this pluginabstract PluginOutput
AbstractTweetyPlugin. execute(java.io.File[] input, CommandParameter[] params)
executes the given inputPluginOutput
TweetyPlugin. execute(java.io.File[] input, CommandParameter[] params)
passes by the arguments given with the call to the called plugin -
Uses of CommandParameter in net.sf.tweety.plugin.parameter
Subclasses of CommandParameter in net.sf.tweety.plugin.parameter Modifier and Type Class Description class
CustomStringListCommandParameter
This class extends the string list command parameter with functionality to define valid strings with regular expressions.class
FileListCommandParameter
This parameter holds a file-list of possible argumentsclass
IntegerCommandParameter
This parameter holds a number-interval of possible argumentsclass
SelectionCommandParameter
This class expands the CommandParameter with a selection-array containing strings the parameter supportsclass
StringListCommandParameter
This class models a string list command parameter for Work-in-Progress, do not use!Methods in net.sf.tweety.plugin.parameter that return CommandParameter Modifier and Type Method Description abstract CommandParameter
CommandParameter. instantiate(java.lang.String s)
instantiate the command with the given argument string if validCommandParameter
CustomStringListCommandParameter. instantiate(java.lang.String s)
instantiate single stringCommandParameter
CustomStringListCommandParameter. instantiate(java.lang.String[] s)
instantiates a list of arguments if validCommandParameter
FileListCommandParameter. instantiate(java.lang.String filename)
instantiates a new parameter iff the given value ist valid for this command parameter (for special case with one file);CommandParameter
FileListCommandParameter. instantiate(java.util.ArrayList<java.lang.String> a)
CommandParameter
IntegerCommandParameter. instantiate(java.lang.String s)
instantiates a new parameter iff the given value is valid for this command parameterCommandParameter
SelectionCommandParameter. instantiate(java.lang.String s)
instantiates a new parameter iff the given value ist valid for this command parameterCommandParameter
StringListCommandParameter. instantiate(java.lang.String s)
instantiates unary argument if validCommandParameter
StringListCommandParameter. instantiate(java.lang.String[] s)
instantiates a list of arguments if validMethods in net.sf.tweety.plugin.parameter that return types with arguments of type CommandParameter Modifier and Type Method Description java.util.ArrayList<CommandParameter>
SelectionCommandParameter. instantiate(java.util.ArrayList<java.lang.String> s)
-
Uses of CommandParameter in net.sf.tweety.preferences.plugin
Methods in net.sf.tweety.preferences.plugin that return types with arguments of type CommandParameter Modifier and Type Method Description java.util.List<CommandParameter>
PreferencesPlugin. getParameters()
Methods in net.sf.tweety.preferences.plugin with parameters of type CommandParameter Modifier and Type Method Description void
PreferencesPlugin. addParameter(CommandParameter cmdParameter)
PluginOutput
PreferencesPlugin. execute(java.io.File[] input, CommandParameter[] params)
-