Interface ISort<T>


public interface ISort<T>
  • Method Details

    • ascending

      IQuery<T> ascending(IParam theParam)
      Sort ascending
    • ascending

      IQuery<T> ascending(String theParam)
      Sort ascending
      Parameters:
      theParam - The param name, e.g. "address"
    • defaultOrder

      Sort by the default order. Note that as of STU3, there is no longer a concept of default order, only ascending and descending. This method technically implies "ascending" but it makes more sense to use ascending(IParam)
    • defaultOrder

      Sort by the default order. Note that as of STU3, there is no longer a concept of default order, only ascending and descending. This method technically implies "ascending" but it makes more sense to use ascending(IParam)
    • descending

      IQuery<T> descending(IParam theParam)
      Sort descending
      Parameters:
      theParam - A query param - Could be a constant such as Patient.ADDRESS or a custom param such as new StringClientParam("foo")
    • descending

      IQuery<T> descending(String theParam)
      Sort ascending
      Parameters:
      theParam - The param name, e.g. "address"