-
Notifications
You must be signed in to change notification settings - Fork 0
/
Livro.java
101 lines (85 loc) · 1.97 KB
/
Livro.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
import java.io.Serializable;
import java.util.Objects;
/**
* Livro
*/
public class Livro implements Serializable {
private static final long serialVersionUID = 1L;
private String isbn;
private String nome;
private String autor;
private Integer quantidade;
public Livro (String isbn, String nome, String autor, Integer quantidade) {
this.isbn = isbn;
this.nome = nome;
this.autor = autor;
this.quantidade = quantidade;
}
public Livro () {}
/**
* @return the isbn
*/
public String getIsbn() {
return isbn;
}
/**
* @param isbn the isbn to set
*/
public void setIsbn(String isbn) {
this.isbn = isbn;
}
/**
* @return the nome
*/
public String getNome() {
return nome;
}
/**
* @param nome the nome to set
*/
public void setNome(String nome) {
this.nome = nome;
}
/**
* @return the autor
*/
public String getAutor() {
return autor;
}
/**
* @param autor the autor to set
*/
public void setAutor(String autor) {
this.autor = autor;
}
public Integer getQuantidade() {
return quantidade;
}
public void setQuantidade(Integer quantidade) {
this.quantidade = quantidade;
}
@Override
public String toString() {
return "\nISBN: " + isbn + "\nNome: " + nome + "\nQuantidade: " + quantidade + " unidades" ;
}
@Override
public int hashCode() {
int hash = 3;
hash = 79 * hash + Objects.hashCode(this.isbn);
return hash;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
final Livro other = (Livro) obj;
return Objects.equals(this.isbn, other.isbn);
}
}