All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jsonvalues.JsPathPairLens Maven / Gradle / Ivy

package jsonvalues;


/**
 Represent a Lens which focus is the path of a json pair
 */
final class JsPathPairLens extends Lens {
    JsPathPairLens() {
        super(pair -> pair.path,
              path -> pair -> JsPair.of(path,
                                        pair.value)
             );

    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy