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

io.sphere.client.model.facets.MoneyRangeFacetResult Maven / Gradle / Ivy

There is a newer version: 0.72.1
Show newest version
package io.sphere.client.model.facets;

import com.google.common.collect.FluentIterable;
import com.google.common.collect.ImmutableList;
import net.jcip.annotations.Immutable;

import java.util.List;

/** Aggregated counts for a money range facet (e.g. a price facet or a Money attribute facet),
 * returned as a part of {@link io.sphere.client.model.SearchResult}. */
@Immutable
public class MoneyRangeFacetResult implements FacetResult {
    private ImmutableList items;

    /** A list of individual ranges for this money range facet and their respective counts. */
    public List getItems() {
        return items;
    }

    /** Parses cent amounts returned by the backend into BigDecimals representing money amounts. */
    public static MoneyRangeFacetResult fromCents(RangeFacetResultRaw facetResult) {
        if (facetResult == null) return null;
        return new MoneyRangeFacetResult(
                FluentIterable.from(facetResult.getItems()).transform(MoneyRangeFacetItem.fromCents).toImmutableList());
    }

    private MoneyRangeFacetResult(ImmutableList items) {
        this.items = items;
    }

    @Override
    public String toString() {
        return "MoneyRangeFacetResult{" +
                "items=" + items +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy