Public static Dev getInstance() {
if (INSTANCE == null) {
INSTANCE = EngineerBuilder.aDev().
withMainSkill(Skills.JAVA).
fromSchool(Schools.SUPINFO).
withName("Stephane Khahamyan").
bornIn("28/08/1986").
addSome("IDE", {"Eclipse", "IntelliJ"} ).
andSome("Framework", {"Spring", "Hibernate", "MyBatis", "Struts"} ).
andSomeOtherTechnicalSkills( {"Bootstrap", "jQuery", "SQL", "TDD"} ).
setAvailability(Boolean.FALSE).
build();
}
return INSTANCE;
}