Getter for the value of the property country.returnThe current value of the property country. return this.country;
return this.country;
Setter for the value of the property country.paramcountry The new value of the property country. this.country = country;
this.country = country;
Setter for the value of the property country.paramcountry The new value of the property country.throwsIllegalArgumentException If the country is an illegal value. if ((country < Country.MIN_VALUE) || (country > Country.MAX_VALUE)) { throw new IllegalArgumentException(); } this.country = country;
if ((country < Country.MIN_VALUE) || (country > Country.MAX_VALUE)) { throw new IllegalArgumentException(); } this.country = country;