Interface SearchExistsExpression

All Superinterfaces:
SearchQuery, SearchQueryExpression

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

     SearchExistsExpression searchExistsExpression = SearchExistsExpression.builder()
             .exists(existsBuilder -> existsBuilder)
             .build()
 
  • Method Details

    • getExists

      @NotNull @Valid @NotNull @Valid SearchExistsValue getExists()
      Returns:
      exists
    • setExists

      void setExists(SearchExistsValue exists)
      set exists
      Parameters:
      exists - value to be set
    • of

      factory method
      Returns:
      instance of SearchExistsExpression
    • of

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

      factory method to create a deep copy of SearchExistsExpression
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • builder

      builder factory method for SearchExistsExpression
      Returns:
      builder
    • builder

      create builder for SearchExistsExpression instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withSearchExistsExpression

      default <T> T withSearchExistsExpression(Function<SearchExistsExpression,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<SearchExistsExpression> typeReference()
      gives a TypeReference for usage with Jackson DataBind
      Returns:
      TypeReference