import com.example.dateadapterj.DateAdapter;
public class Main {
public static void main(String[] args) {
DateAdapter dateAdapter = new DateAdapter();
String inputDate = "2021-01-01";
String formattedDate = dateAdapter.formatDate(inputDate, outputPattern);
String parsedDate = dateAdapter.parseDate(formattedDate, outputPattern);
}
}