Class ExprLookup.Variable

  • Enclosing class:
    ExprLookup

    public static class ExprLookup.Variable
    extends java.lang.Object
    The key and corresponding object that will be made available to the JexlContext for use in expressions.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.lang.String key
      The name to be used in expressions
      private java.lang.Object value
      The object to be accessed in expressions
    • Constructor Summary

      Constructors 
      Constructor Description
      Variable()  
      Variable​(java.lang.String name, java.lang.Object value)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getName()  
      java.lang.Object getValue()  
      void setName​(java.lang.String name)  
      void setValue​(java.lang.Object value)  
      • Methods inherited from class java.lang.Object

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

      • key

        private java.lang.String key
        The name to be used in expressions
      • value

        private java.lang.Object value
        The object to be accessed in expressions
    • Constructor Detail

      • Variable

        public Variable()
      • Variable

        public Variable​(java.lang.String name,
                        java.lang.Object value)