-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBook.java
52 lines (47 loc) · 1.03 KB
/
Book.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
42
43
44
45
46
47
48
49
50
51
52
//EMP5117
//Winter 2019
//Assignment-2
public class Book implements Comparable<Book>{
String author;
String title;
int year;
public Book(String author, String title, int year) {
this.author=author;
this.title=title;
this.year=year;
}
public String getAuthor( ) {
return author;
}
public String getTitle( ){
return title;
}
public int getYear( ){
return year;
}
public boolean equals(Book other){
if(other.author.equalsIgnoreCase(author)
&& other.title.equalsIgnoreCase(title)
&& other.year==year)
{
return true;
}
return false;
}
public String toString ( ) {
return "\""+author+"\""+":"+"\t"+title+"\t"+"("+year+")";
}
public int compareTo(Book compareBook) {
int dif;
dif = this.getAuthor().compareTo(compareBook.getAuthor());
if(dif != 0)
return dif;
dif = this.getTitle().compareTo(compareBook.getTitle());
if(dif != 0)
return dif;
if(this.getYear()< compareBook.getYear())
return -1;
else
return 1;
}
}