Interface ColumnQuery

    • Method Detail

      • getLimit

        long getLimit()
        Returns:
        The maximum number of results the select object was set to retrieve. The implementation might ignore this option.
      • getSkip

        long getSkip()
        Returns:
        The position of the first result the select object was set to retrieve. The implementation might ignore this option.
      • getColumnFamily

        String getColumnFamily()
        The column family name
        Returns:
        the column family name
      • getCondition

        Optional<ColumnCondition> getCondition()
        The conditions that contains in this ColumnQuery If empty, Optional.empty() is true, the implementation might either return an unsupported exception or returns same elements in the database.
        Returns:
        the conditions
      • getColumns

        List<String> getColumns()
        Returns the columns to returns in that query if empty will return all elements in the query. The implementation might ignore this option.
        Returns:
        the columns
      • getSorts

        List<Sort> getSorts()
        The sorts that contains in this ColumnQuery The implementation might ignore this option.
        Returns:
        the sorts