forked from se-edu/addressbook-level4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPrefix.java
41 lines (33 loc) · 859 Bytes
/
Prefix.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package seedu.address.logic.parser;
/**
* A prefix that marks the beginning of an argument in an arguments string.
* E.g. 't/' in 'add James t/ friend'.
*/
public class Prefix {
private final String prefix;
public Prefix(String prefix) {
this.prefix = prefix;
}
public String getPrefix() {
return prefix;
}
public String toString() {
return getPrefix();
}
@Override
public int hashCode() {
return prefix == null ? 0 : prefix.hashCode();
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
// instanceof handles nulls
if (!(other instanceof Prefix)) {
return false;
}
Prefix otherPrefix = (Prefix) other;
return prefix.equals(otherPrefix.prefix);
}
}