Browse Source

update of javadoc

pull/335/head
mattg 8 years ago
parent
commit
e739514e64
  1. 8
      json-path/src/main/java/com/jayway/jsonpath/internal/function/latebinding/ILateBindingValue.java

8
json-path/src/main/java/com/jayway/jsonpath/internal/function/latebinding/ILateBindingValue.java

@ -6,5 +6,13 @@ package com.jayway.jsonpath.internal.function.latebinding;
* Created by mattg on 3/27/17. * Created by mattg on 3/27/17.
*/ */
public interface ILateBindingValue { public interface ILateBindingValue {
/**
* 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.
*
* @return
* The value of evaluating the context at runtime.
*/
Object get(); Object get();
} }

Loading…
Cancel
Save