Interface SorterOrder


public interface SorterOrder
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    No order, all elements are considered equal.
    static final int
    A partial order.
    static final int
    A total order. gtk_sorter_compare() will only
    return %GTK_ORDERING_EQUAL if an item is compared with itself.
  • Field Details

    • PARTIAL

      static final int PARTIAL
      A partial order. Any `GtkOrdering` is possible.
      See Also:
    • NONE

      static final int NONE
      No order, all elements are considered equal.
      gtk_sorter_compare() will only return %GTK_ORDERING_EQUAL.
      See Also:
    • TOTAL

      static final int TOTAL
      A total order. gtk_sorter_compare() will only
      return %GTK_ORDERING_EQUAL if an item is compared with itself. Two
      different items will never cause this value to be returned.
      See Also: