Ejemplo n.º 1
0
  public boolean equals(MessageBytes mb) {
    switch (type) {
      case T_STR:
        return mb.equals(strValue);
    }

    if (mb.type != T_CHARS && mb.type != T_BYTES) {
      // it's a string or int/date string value
      return equals(mb.toString());
    }

    // mb is either CHARS or BYTES.
    // this is either CHARS or BYTES
    // Deal with the 4 cases ( in fact 3, one is simetric)

    if (mb.type == T_CHARS && type == T_CHARS) {
      return charC.equals(mb.charC);
    }
    if (mb.type == T_BYTES && type == T_BYTES) {
      return byteC.equals(mb.byteC);
    }
    if (mb.type == T_CHARS && type == T_BYTES) {
      return byteC.equals(mb.charC);
    }
    if (mb.type == T_BYTES && type == T_CHARS) {
      return mb.byteC.equals(charC);
    }
    // can't happen
    return true;
  }
Ejemplo n.º 2
0
 /**
  * Compares the message bytes to the specified String object.
  *
  * @param s the String to compare
  * @return true if the comparison succeeded, false otherwise
  */
 public boolean equals(String s) {
   if (!caseSensitive) return equalsIgnoreCase(s);
   switch (type) {
     case T_STR:
       if (strValue == null && s != null) return false;
       return strValue.equals(s);
     case T_CHARS:
       return charC.equals(s);
     case T_BYTES:
       return byteC.equals(s);
     default:
       return false;
   }
 }