Interface NCSqlLimit
-
public interface NCSqlLimit
Object presentation of SQL limit.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NCSqlColumn
getColumn()
Gets SQL column this limit is applied to.int
getLimit()
Gets the numeric value of the limit.boolean
isAscending()
Gets whether limit ascending or descending.
-
-
-
Method Detail
-
getColumn
NCSqlColumn getColumn()
Gets SQL column this limit is applied to.- Returns:
- SQL column this limit is applied to.
-
getLimit
int getLimit()
Gets the numeric value of the limit.- Returns:
- Numeric value of the limit.
-
isAscending
boolean isAscending()
Gets whether limit ascending or descending.- Returns:
- Whether limit ascending or descending.
-
-