14151617181920212223
public static Doctor create( List<Doctor> doctorList ) { int size = doctorList.size(); return size == 0 ? new NullDoctor() : size == 1 ? (Doctor) doctorList.get(0) : createDoctorList( doctorList, size ) ; }