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

com.commercetools.sunrise.search.facetedsearch.terms.TermFacetMapperSettings Maven / Gradle / Ivy

The newest version!
package com.commercetools.sunrise.search.facetedsearch.terms;

import javax.annotation.Nullable;
import java.util.List;

public interface TermFacetMapperSettings {

    String getName();

    @Nullable
    List getValues();

    static TermFacetMapperSettings of(final String name, @Nullable final List values) {
        return new TermFacetMapperSettingsImpl(name, values);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy