Class BeansResolverFactory

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean containsKey​(java.lang.Object key)
      Allows checking whether there is currently an object bound to the key.
      Resolver createResolver​(VariableScope variableScope)  
      java.lang.Object get​(java.lang.Object key)
      Returns the object currently bound to the key or false if no object is currently bound to the key
      java.util.Set<java.lang.String> keySet()
      Returns the set of key that can be resolved using this resolver.
      • Methods inherited from class java.lang.Object

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

      • BeansResolverFactory

        public BeansResolverFactory()
    • Method Detail

      • containsKey

        public boolean containsKey​(java.lang.Object key)
        Description copied from interface: Resolver
        Allows checking whether there is currently an object bound to the key.
        Specified by:
        containsKey in interface Resolver
        Parameters:
        key - the key to check
        Returns:
        true if there is currently an object bound to the key. False otherwise.
      • get

        public java.lang.Object get​(java.lang.Object key)
        Description copied from interface: Resolver
        Returns the object currently bound to the key or false if no object is currently bound to the key
        Specified by:
        get in interface Resolver
        Parameters:
        key - the key of the object to retrieve.
        Returns:
        the object currently bound to the key or 'null' if no object is currently bound to the key.
      • keySet

        public java.util.Set<java.lang.String> keySet()
        Description copied from interface: Resolver
        Returns the set of key that can be resolved using this resolver.
        Specified by:
        keySet in interface Resolver
        Returns:
        the set of keys that can be resolved by this resolver.