value method

String value()

Implementation

String value(){
  switch(this){
    case NUIDBQueryOperator.AND : return "AND";
    case NUIDBQueryOperator.OR : return "OR";
  }
  throw Exception("NUIDatabase -> Invalid query operator");
}