Interface Script

All Superinterfaces:
Serializable
All Known Implementing Classes:
AbstractScript, GroovyScript, ScriptlerScript

public interface Script extends Serializable
Interface for scripts.
Since:
0.23
Author:
Bruno P. Kinoshita
  • Method Summary

    Modifier and Type
    Method
    Description
    Evaluates the script.
    eval(Map<String,String> parameters)
    Evaluates the script using the given parameters binding parameters.
  • Method Details

    • eval

      Object eval()
      Evaluates the script.
      Returns:
      output of the script
    • eval

      Object eval(Map<String,String> parameters)
      Evaluates the script using the given parameters binding parameters.
      Parameters:
      parameters - binding parameters
      Returns:
      output of the script