All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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