Skip to content

Instantly share code, notes, and snippets.

@gyselph
Created January 15, 2021 13:54
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 gyselph/6f22547a7dbb86801e51882eed9787b3 to your computer and use it in GitHub Desktop.
Save gyselph/6f22547a7dbb86801e51882eed9787b3 to your computer and use it in GitHub Desktop.
Java 7 to 15: sealed class
public sealed interface Fruit permits Apple, Pear {
String getName();
}
public final class Apple implements Fruit {
public String getName() { return "Apple"; }
}
public final class Pear implements Fruit {
public String getName() { return "Pear"; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment