Class WhereLimit

  • All Implemented Interfaces:

    
    public class WhereLimit
    
                        
    Since:

    2024-05-31

    Author:

    trydofor

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
      WhereLimit()
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      WhereLimit where(Condition cond) t.Id.gt(1L).and(t.CommitId.
      Condition where()
      WhereLimit limit(int offset, int limit)
      WhereLimit limit(int limit)
      int offset()
      int limit()
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • WhereLimit

        WhereLimit()
    • Method Detail

      • where

        @Contract(value = "_->this") WhereLimit where(Condition cond)

        t.Id.gt(1L).and(t.CommitId.lt(200L))

        Parameters:
        cond - condition
        Returns:

        this

      • where

        @NotNull() Condition where()
      • limit

        @Contract(value = "_,_->this") WhereLimit limit(int offset, int limit)