Home | History | Annotate | Download | only in http

Lines Matching refs:that

41  * RFC 3261 specifies a message format that is identical to HTTP except
48 * Note that {@link #equals} and {@link #hashCode} are defined as
180 ProtocolVersion that = (ProtocolVersion) obj;
182 return ((this.protocol.equals(that.protocol)) &&
183 (this.major == that.major) &&
184 (this.minor == that.minor));
193 * @param that the protocol version to consider
198 public boolean isComparable(ProtocolVersion that) {
199 return (that != null) && this.protocol.equals(that.protocol);
209 * @param that the protocl version to compare with
219 public int compareToVersion(ProtocolVersion that) {
220 if (that == null) {
224 if (!this.protocol.equals(that.protocol)) {
227 this + " " + that);
230 int delta = getMajor() - that.getMajor();
232 delta = getMinor() - that.getMinor();