Uses of Class
org.tweetyproject.plugin.parameter.CommandParameter
-
-
Uses of CommandParameter in org.tweetyproject.cli.plugins
Methods in org.tweetyproject.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 org.tweetyproject.logics.fol.plugin
Methods in org.tweetyproject.logics.fol.plugin with parameters of type CommandParameter Modifier and Type Method Description PluginOutputFirstOrderLogicPlugin. execute(java.io.File[] input, CommandParameter[] params)Executes this plugin with given input files and other aggregated parameters -
Uses of CommandParameter in org.tweetyproject.logics.pl.plugin
Methods in org.tweetyproject.logics.pl.plugin with parameters of type CommandParameter Modifier and Type Method Description PluginOutputPlPlugin. execute(java.io.File[] input, CommandParameter[] params)Method to be executed with input files and parameters from tweety cli -
Uses of CommandParameter in org.tweetyproject.logics.rpcl.plugin
Methods in org.tweetyproject.logics.rpcl.plugin with parameters of type CommandParameter Modifier and Type Method Description PluginOutputRPCLPlugin. execute(java.io.File[] input, CommandParameter[] params)Executes this plugin with given input files and other aggregated parameters -
Uses of CommandParameter in org.tweetyproject.plugin
Methods in org.tweetyproject.plugin that return CommandParameter Modifier and Type Method Description CommandParameterAbstractTweetyPlugin. validateParameter(java.lang.String s)checks, whether each command parameter given with the plugin call is valid within is this pluginMethods in org.tweetyproject.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 org.tweetyproject.plugin with parameters of type CommandParameter Modifier and Type Method Description voidAbstractTweetyPlugin. addParameter(CommandParameter cmdParameter)adds new command parameter to this pluginabstract PluginOutputAbstractTweetyPlugin. execute(java.io.File[] input, CommandParameter[] params)executes the given inputPluginOutputTweetyPlugin. execute(java.io.File[] input, CommandParameter[] params)passes by the arguments given with the call to the called plugin -
Uses of CommandParameter in org.tweetyproject.plugin.parameter
Subclasses of CommandParameter in org.tweetyproject.plugin.parameter Modifier and Type Class Description classCustomStringListCommandParameterThis class extends the string list command parameter with functionality to define valid strings with regular expressions.classFileListCommandParameterThis parameter holds a file-list of possible argumentsclassIntegerCommandParameterThis parameter holds a number-interval of possible argumentsclassSelectionCommandParameterThis class expands the CommandParameter with a selection-array containing strings the parameter supportsclassStringListCommandParameterThis class models a string list command parameter for Work-in-Progress, do not use!Methods in org.tweetyproject.plugin.parameter that return CommandParameter Modifier and Type Method Description abstract CommandParameterCommandParameter. instantiate(java.lang.String s)instantiate the command with the given argument string if validCommandParameterCustomStringListCommandParameter. instantiate(java.lang.String s)instantiate single stringCommandParameterCustomStringListCommandParameter. instantiate(java.lang.String[] s)instantiates a list of arguments if validCommandParameterFileListCommandParameter. 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);CommandParameterFileListCommandParameter. instantiate(java.util.ArrayList<java.lang.String> a)CommandParameterIntegerCommandParameter. instantiate(java.lang.String s)instantiates a new parameter iff the given value is valid for this command parameterCommandParameterSelectionCommandParameter. instantiate(java.lang.String s)instantiates a new parameter iff the given value ist valid for this command parameterCommandParameterStringListCommandParameter. instantiate(java.lang.String s)instantiates unary argument if validCommandParameterStringListCommandParameter. instantiate(java.lang.String[] s)instantiates a list of arguments if validMethods in org.tweetyproject.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 org.tweetyproject.preferences.plugin
Methods in org.tweetyproject.preferences.plugin that return types with arguments of type CommandParameter Modifier and Type Method Description java.util.List<CommandParameter>PreferencesPlugin. getParameters()Methods in org.tweetyproject.preferences.plugin with parameters of type CommandParameter Modifier and Type Method Description voidPreferencesPlugin. addParameter(CommandParameter cmdParameter)PluginOutputPreferencesPlugin. execute(java.io.File[] input, CommandParameter[] params)
-