Interface ILateBindingValue

  • All Known Implementing Classes:
    JsonLateBindingValue, PathLateBindingValue

    public interface ILateBindingValue
    Obtain the late binding value at runtime rather than storing the value in the cache thus trashing the cache
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.Object get()
      Obtain the value of the parameter at runtime using the parameter state and invocation of other late binding values rather than maintaining cached state which ends up in a global store and won't change as a result of external reference changes.
    • Method Detail

      • get

        java.lang.Object get()
        Obtain the value of the parameter at runtime using the parameter state and invocation of other late binding values rather than maintaining cached state which ends up in a global store and won't change as a result of external reference changes.
        Returns:
        The value of evaluating the context at runtime.