/** Add Software to the ORDER BY clause. This convenience method assumes ascending order. */
 public void addOrderBySoftware() {
   builder.addOrderByColumn("Software", "ASC");
 }
 /** Add Capability to the ORDER BY clause. This convenience method assumes ascending order. */
 public void addOrderByCapability() {
   builder.addOrderByColumn("Capability", "ASC");
 }
 /**
  * Add Software to the ORDER BY clause.
  *
  * @param direction_flag True for ascending order, false for descending
  */
 public void addOrderBySoftware(boolean direction_flag) {
   builder.addOrderByColumn("Software", (direction_flag) ? "ASC" : "DESC");
 }
 /** Add Candidate to the ORDER BY clause. This convenience method assumes ascending order. */
 public void addOrderByCandidate() {
   builder.addOrderByColumn("Candidate", "ASC");
 }
 /**
  * Add Capability to the ORDER BY clause.
  *
  * @param direction_flag True for ascending order, false for descending
  */
 public void addOrderByCapability(boolean direction_flag) {
   builder.addOrderByColumn("Capability", (direction_flag) ? "ASC" : "DESC");
 }
 /**
  * Add OperatingSystem to the ORDER BY clause. This convenience method assumes ascending order.
  */
 public void addOrderByOperatingSystem() {
   builder.addOrderByColumn("OperatingSystem", "ASC");
 }
 /**
  * Add Candidate to the ORDER BY clause.
  *
  * @param direction_flag True for ascending order, false for descending
  */
 public void addOrderByCandidate(boolean direction_flag) {
   builder.addOrderByColumn("Candidate", (direction_flag) ? "ASC" : "DESC");
 }
 /**
  * Add OperatingSystem to the ORDER BY clause.
  *
  * @param direction_flag True for ascending order, false for descending
  */
 public void addOrderByOperatingSystem(boolean direction_flag) {
   builder.addOrderByColumn("OperatingSystem", (direction_flag) ? "ASC" : "DESC");
 }
 /** Add Profile to the ORDER BY clause. This convenience method assumes ascending order. */
 public void addOrderByProfile() {
   builder.addOrderByColumn("Profile", "ASC");
 }
 /**
  * Add Profile to the ORDER BY clause.
  *
  * @param direction_flag True for ascending order, false for descending
  */
 public void addOrderByProfile(boolean direction_flag) {
   builder.addOrderByColumn("Profile", (direction_flag) ? "ASC" : "DESC");
 }
 /** Add LeafNumber to the ORDER BY clause. This convenience method assumes ascending order. */
 public void addOrderByLeafNumber() {
   builder.addOrderByColumn("LeafNumber", "ASC");
 }
 /**
  * Add LeafNumber to the ORDER BY clause.
  *
  * @param direction_flag True for ascending order, false for descending
  */
 public void addOrderByLeafNumber(boolean direction_flag) {
   builder.addOrderByColumn("LeafNumber", (direction_flag) ? "ASC" : "DESC");
 }