package org.autoplot.jythonsupport; import java.util.List; import java.util.Map; /** * Class for representing a Parameter. This has been buried within the JythonUtil * class and will be useful on its own. */ public class Param { public String name; public String label; // the label for the variable used in the script public Object deft; public Object value; // the value if available, null means not present. public String doc; public List enums; // the allowed values public List examples; // example values /** * constraints for the value, such as: */ public Map constraints; /** * The parameter type:
    *
  • T (TimeRange), *
  • A (String, but note a string with the values enumerated either T * or F is treated as a boolean.) *
  • F (Double or Integer, but note the values [0,1] imply it's a * boolean.), *
  • D (Datum), *
  • S (DatumRange), *
  • U (Dataset URI), *
  • L (URL), a file location, not a URI with parameters. *
  • or R (the resource URI) *
*/ public char type; /** * List<String> of labels. */ public static String CONSTRAINT_LABELS = "labels"; /** * Number for the minimum, inclusive */ public static String CONSTRAINT_MIN = "min"; /** * Number for the maximum, inclusive */ public static String CONSTRAINT_MAX = "max"; /** * List<Object> example values, which will be the same as the examples field. */ public static String CONSTRAINT_EXAMPLES = "examples"; @Override public String toString() { return name + "=" + deft; } }