It seems the mentor is not accepting this bit of code from me. I ran through it multiple times and can't really see the error but I have a feeling its in the replaceAll method?
@Override
public String getPhoneNumber() {
int countryCode = data.getCountryPhoneCode();
int phoneNumber = data.getPhoneNumber();
String phoneNumberString = String.valueOf(phoneNumber);
String phoneNumberFormatted = String.format("%10d", phoneNumberString);
String finalPhoneNumber = phoneNumberFormatted.replaceAll("(\\d{3})(\\d{3})(\\d{2})(\\d{2})", "+" + countryCode + "($1)$2-$3-$4");
return finalPhoneNumber;
}
package com.codegym.task.task19.task1903;
/*
Adapting multiple interfaces
*/
import java.util.HashMap;
import java.util.Map;
public class Solution {
public static Map<String, String> countries = new HashMap<>();
static {
countries.put("UA", "Ukraine");
countries.put("US", "United States");
countries.put("FR", "France");
}
public static void main(String[] args) {
}
public static class IncomeDataAdapter implements Customer, Contact {
private IncomeData data;
public IncomeDataAdapter(IncomeData data) {
this.data = data;
}
@Override
public String getName() {
return data.getContactLastName() + ", " + data.getContactFirstName();
}
@Override
public String getPhoneNumber() {
int countryCode = data.getCountryPhoneCode();
int phoneNumber = data.getPhoneNumber();
String phoneNumberString = String.valueOf(phoneNumber);
String phoneNumberFormatted = String.format("%10d", phoneNumberString);
String finalPhoneNumber = phoneNumberFormatted.replaceAll("(\\d{3})(\\d{3})(\\d{2})(\\d{2})", "+" + countryCode + "($1)$2-$3-$4");
return finalPhoneNumber;
}
@Override
public String getCompanyName() {
return data.getCompany();
}
@Override
public String getCountryName() {
return countries.get(data.getCountryCode());
}
}
public static interface IncomeData {
String getCountryCode(); // For example: US
String getCompany(); // For example: CodeGym Ltd.
String getContactFirstName(); // For example: John
String getContactLastName(); // For example: Smith
int getCountryPhoneCode(); // For example: 1
int getPhoneNumber(); // For example: 991234567
}
public static interface Customer {
String getCompanyName(); // For example: CodeGym Ltd.
String getCountryName(); // For example: United States
}
public static interface Contact {
String getName(); // For example: Smith, John
String getPhoneNumber(); // For example: +1(099)123-45-67
}
}