Class Parameter



  • public abstract class Parameter
    extends java.lang.Object

    Represents a parameter in any of several places where parameters are needed when processing flows.

    Since:
    2.2
    • Constructor Summary

      Constructors 
      Constructor Description
      Parameter​()  
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      abstract java.lang.String getName​()
      Return the name of the parameter
      abstract ValueExpression getValue​()
      Return a ValueExpression for the value of the parameter.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Parameter

        public Parameter​()
    • Method Detail

      • getName

        public abstract java.lang.String getName​()

        Return the name of the parameter

        Returns:
        the name of the parameter
        Since:
        2.2
      • getValue

        public abstract ValueExpression getValue​()

        Return a ValueExpression for the value of the parameter. Depending on the context, this expression may only ever be evaluated in a "get" operation.

        Returns:
        a ValueExpression for the value of the parameter
        Since:
        2.2