Interface ExistsPredicateFieldStep<SR,N extends ExistsPredicateOptionsStep<?>>

Type Parameters:
N - The type of the next step.

public interface ExistsPredicateFieldStep<SR,N extends ExistsPredicateOptionsStep<?>>
The initial step in an "exists" predicate definition, where the target field can be set.
  • Method Summary

    Modifier and Type
    Method
    Description
    field(String fieldPath)
    Target the given field in the "exists" predicate.
    default N
    field(ExistsPredicateFieldReference<? super SR> fieldReference)
    Target the given field in the "exists" predicate.
  • Method Details

    • field

      N field(String fieldPath)
      Target the given field in the "exists" predicate.
      Parameters:
      fieldPath - The path to the index field to apply the predicate on.
      Returns:
      The next step.
    • field

      @Incubating default N field(ExistsPredicateFieldReference<? super SR> fieldReference)
      Target the given field in the "exists" predicate.
      Parameters:
      fieldReference - The field reference representing a definition of the index field to apply the predicate on.
      Returns:
      The next step.