Skip to content

Instantly share code, notes, and snippets.

@Passarinho4
Created August 19, 2017 11:09
Show Gist options
  • Save Passarinho4/951645165789bf134a8ad9cd755d6962 to your computer and use it in GitHub Desktop.
Save Passarinho4/951645165789bf134a8ad9cd755d6962 to your computer and use it in GitHub Desktop.
Developer builder
public static class Builder extends AbstractEmployee.Builder<Developer> {
public Builder() {
role(Role.DEVELOPER);
}
@Override
public Developer build() {
return new Developer(this);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment