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

io.sphere.sdk.search.model.LocalizedEnumFacetedSearchSearchModel Maven / Gradle / Ivy

The newest version!
package io.sphere.sdk.search.model;

import javax.annotation.Nullable;

public final class LocalizedEnumFacetedSearchSearchModel extends SearchModelImpl {

    LocalizedEnumFacetedSearchSearchModel(@Nullable final SearchModel parent, @Nullable final String pathSegment) {
        super(parent, pathSegment);
    }

    public TermFacetedSearchSearchModel key() {
        return new StringSearchModel<>(this, "key").facetedAndFiltered();
    }

    public LocalizedStringFacetedSearchSearchModel label() {
        return new LocalizedStringFacetedSearchSearchModel<>(this, "label");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy