Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: src/org/adblockplus/libadblockplus/HeaderEntry.java

Issue 5697499218051072: Usage of new API, cleanups (reduced) (Closed)
Left Patch Set: Created April 11, 2014, 1:31 p.m.
Right Patch Set: Even more review issues fixed. Created April 28, 2014, 10:18 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Right: Side by side diff | Download
LEFTRIGHT
(no file at all)
1 /*
2 * This file is part of Adblock Plus <http://adblockplus.org/>,
3 * Copyright (C) 2006-2014 Eyeo GmbH
4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation.
8 *
9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 package org.adblockplus.libadblockplus;
19
20 public class HeaderEntry
21 {
22 private final String key;
23 private final String value;
24
25 public HeaderEntry(final String key, final String value)
26 {
27 this.key = key;
28 this.value = value;
29 }
30
31 public static HeaderEntry of(final String key, final String value)
32 {
33 return new HeaderEntry(key, value);
34 }
35
36 public String getKey()
37 {
38 return this.key;
39 }
40
41 public String getValue()
42 {
43 return this.value;
44 }
45
46 @Override
47 public int hashCode()
48 {
49 return this.key.hashCode() * 31 + this.value.hashCode();
50 }
51
52 @Override
53 public boolean equals(final Object o)
54 {
55 if (!(o instanceof HeaderEntry))
56 {
57 return false;
58 }
59 final HeaderEntry other = (HeaderEntry) o;
60 return this.key.equals(other.key) && this.value.equals(other.value);
61 }
62
63 @Override
64 public String toString()
65 {
66 return this.key + ": " + this.value;
67 }
68 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld