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

io.sphere.sdk.search.EntitySearch Maven / Gradle / Ivy

There is a newer version: 1.0.0-M26
Show newest version
package io.sphere.sdk.search;

import io.sphere.sdk.models.LocalizedStringEntry;

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

public interface EntitySearch extends Search {

    @Nullable
    LocalizedStringEntry text();

    List> facets();

    List> resultFilters();

    List> queryFilters();

    List> facetFilters();

    List> sort();

    @Nullable
    Long limit();

    @Nullable
    Long offset();

    String endpoint();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy