groovyx.net.http.Traverser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-builder-ng-core Show documentation
Show all versions of http-builder-ng-core Show documentation
Groovy client for making http requests.
The newest version!
/**
* Copyright (C) 2017 HttpBuilder-NG Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package groovyx.net.http;
import java.util.Map;
import java.util.function.Function;
import java.util.function.Predicate;
public class Traverser {
public static V traverse(final T target, final Function next,
final Function getValue, final Predicate testValue) {
final V v = getValue.apply(target);
if(testValue.test(v)) {
return v;
}
final T nextTarget = next.apply(target);
if(nextTarget != null) {
return traverse(nextTarget, next, getValue, testValue);
}
return null;
}
public static boolean notNull(final V v) { return v != null; }
public static boolean nonEmptyMap(final Map,?> v) { return v != null && !v.isEmpty(); }
public static Predicate notValue(final V v) { return (toTest) -> !v.equals(toTest); }
}