Interface BaseGroupSequenceProvider.IGroupBuilder<T>

    • Method Detail

      • bean

        T bean()
        Gets the bean that is being validated.
        Returns:
        The bean.
      • when

        BaseGroupSequenceProvider.IGroupBuilder<T> when​(Predicate<T> condition)
        Adds a condition to be checked for the next call to add(Class). THe group is added only when the bean satisfies the given condition.
        Parameters:
        condition - Condition to check.
        Returns:
        This builder for chaining method calls.