Package com.dream.domain.resume

Examples of com.dream.domain.resume.ProjectExperience


    public ProjectExperience toProjectExperience() {
        LocalDate startDate = JodaTimeUtil.parseLocalDate(this.startDate);
        LocalDate endDate = JodaTimeUtil.parseLocalDate(this.endDate);
        String[] technologies = this.technologies.split(",");
        return new ProjectExperience(startDate, endDate, project, Arrays.asList(technologies), remark, duty);
    }
View Full Code Here

TOP

Related Classes of com.dream.domain.resume.ProjectExperience

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.