Exemplo n.º 1
0
 public int hashCode() {
   return operatorKind.hashCode() + (dataValue != null ? dataValue.hashCode() : 0);
 }
Exemplo n.º 2
0
 public String toString() {
   return "OP=" + operatorKind + ", " + dataValue != null ? dataValue.toString() : "NULL_DV";
 }
Exemplo n.º 3
0
 protected static DataValue parseDataValue(String rmType, String dvStr) {
   return DataValue.parseValue(rmType + "," + dvStr);
 }