Coverage Report - org.galagosearch.tupleflow.typebuilder.Direction
 
Classes in this File Line Coverage Branch Coverage Complexity
Direction
100%
3/3
N/A
0
 
 1  
 /*
 2  
  * To change this template, choose Tools | Templates
 3  
  * and open the template in the editor.
 4  
  */
 5  
 
 6  
 package org.galagosearch.tupleflow.typebuilder;
 7  
 
 8  
 /**
 9  
  *
 10  
  * @author trevor
 11  
  */
 12  6
 public enum Direction {
 13  2
     ASCENDING,
 14  2
     DESCENDING
 15  
 }
 16