-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBook.java
More file actions
40 lines (34 loc) · 957 Bytes
/
Book.java
File metadata and controls
40 lines (34 loc) · 957 Bytes
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
public class Book {
private final String title;
private final String author;
private final int yearPublished;
private boolean isRead;
// python-like constructor
public Book(String title, String author, int yearPublished, boolean isRead) {
this.title = title;
this.author = author;
this.yearPublished = yearPublished;
this.isRead = isRead;
}
// getters/setters
public String getTitle() {
return title;
}
public String getAuthor() {
return author;
}
public int getYearPublished() {
return yearPublished;
}
public boolean isRead() {
return isRead;
}
public void setRead(boolean read) {
isRead = read;
}
@Override
public String toString() {
String readStatus = isRead ? "Read" : "Unread";
return String.format("\"%s\" by %s (%d) - %s", title, author, yearPublished, readStatus);
}
}