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

io.sphere.sdk.utils.IterableUtils Maven / Gradle / Ivy

package io.sphere.sdk.utils;

import java.util.Optional;
import com.google.common.collect.Iterables;

public final class IterableUtils {
    private IterableUtils() {
    }

    public static  Optional headOption(final Iterable iterable) {
        return Optional.ofNullable(Iterables.getFirst(iterable, null));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy