forked from Eliiss/ProyectoFinal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Direccion.java
64 lines (47 loc) · 1.51 KB
/
Direccion.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
package com.mycompany.javaeat;
public class Direccion {
private String calle;
private int numero;
private int codigoPostal;
private String ciudad;
public Direccion(String calle, int numero, String ciudad , int codigoPostal)
throws IllegalArgumentException {
if (ciudad == null || ciudad.isEmpty()) {
throw new IllegalArgumentException("La ciudad no puede estar vacía.");
}
if (numero <= 0) {
throw new IllegalArgumentException("El número debe ser un número positivo.");
}
if (codigoPostal < 10000 || codigoPostal > 99999) {
throw new IllegalArgumentException("El código postal debe ser un número de 5 dígitos.");
}
this.calle = calle;
this.numero = numero;
this.codigoPostal= codigoPostal;
this.ciudad = ciudad;
}
public String getCalle() {
return calle;
}
public void setCalle(String calle) {
this.calle = calle;
}
public int getNumero() {
return numero;
}
public void setNumero(int numero) {
this.numero = numero;
}
public int getCodigoPostal() {
return codigoPostal;
}
public void setCodigoPostal(int codigoPostal) {
this.codigoPostal = codigoPostal;
}
public String getCiudad() {
return ciudad;
}
public void setCiudad(String ciudad) {
this.ciudad = ciudad;
}
}