Interface SearchFullTextExpression

All Superinterfaces:
SearchQuery, SearchQueryExpression

public interface SearchFullTextExpression extends SearchQueryExpression
SearchFullTextExpression
Example to create an instance using the builder pattern

     SearchFullTextExpression searchFullTextExpression = SearchFullTextExpression.builder()
             .fullText(fullTextBuilder -> fullTextBuilder)
             .build()
 
  • Method Details

    • getFullText

      @NotNull @Valid @NotNull @Valid SearchFullTextValue getFullText()
      Returns:
      fullText
    • setFullText

      void setFullText(SearchFullTextValue fullText)
      set fullText
      Parameters:
      fullText - value to be set
    • of

      factory method
      Returns:
      instance of SearchFullTextExpression
    • of

      factory method to create a shallow copy SearchFullTextExpression
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • deepCopy

      @Nullable static SearchFullTextExpression deepCopy(@Nullable SearchFullTextExpression template)
      factory method to create a deep copy of SearchFullTextExpression
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • builder

      builder factory method for SearchFullTextExpression
      Returns:
      builder
    • builder

      create builder for SearchFullTextExpression instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withSearchFullTextExpression

      default <T> T withSearchFullTextExpression(Function<SearchFullTextExpression,T> helper)
      accessor map function
      Type Parameters:
      T - mapped type
      Parameters:
      helper - function to map the object
      Returns:
      mapped value
    • typeReference

      static com.fasterxml.jackson.core.type.TypeReference<SearchFullTextExpression> typeReference()
      gives a TypeReference for usage with Jackson DataBind
      Returns:
      TypeReference