Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save neomatrix369/4388418 to your computer and use it in GitHub Desktop.
Save neomatrix369/4388418 to your computer and use it in GitHub Desktop.
New example class created - src\test\benchmarks\org\mutabilitydetector\benchmarks\ImmutableByHavingOnlyAPrivateConstructorUsingTheBuilderPattern.java
package org.mutabilitydetector.benchmarks;
public class ImmutableByHavingOnlyAPrivateConstructorUsingTheBuilderPattern {
private final String field;
// usual method of making a class immutable
// - make its constructor private: ref EffectiveJava
private ImmutableByHavingOnlyAPrivateConstructorUsingTheBuilderPattern (String field) {
this.field = field;
}
public String getField() {
return field;
}
// inner Builder class
public static class Builder {
public ImmutableByHavingOnlyAPrivateConstructorUsingTheBuilderPattern build() {
// this new OnlyPrivateConstructors() is fooling mutability detector
// it thinks OnlyPrivateConstructors() is no longer immutable due to the
// ability to call new to create an instance of OnlyPrivateConstructors.
return new ImmutableByHavingOnlyAPrivateConstructorUsingTheBuilderPattern("hi");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment