![JAR search and dependency download from the Maven repository](/logo.png)
io.github.oliviercailloux.teachingexamples.PhoneNumber Maven / Gradle / Ivy
The newest version!
package io.github.oliviercailloux.teachingexamples;
public class PhoneNumber {
private int countryCode;
private int prefix;
private String number;
public PhoneNumber(int countryCode, int prefix, String number) {
this.countryCode = countryCode;
this.prefix = prefix;
this.number = number;
}
public int getCountryCode() {
return countryCode;
}
public int getPrefix() {
return prefix;
}
public String getNumber() {
return number;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy