Skip to content

Instantly share code, notes, and snippets.

@cajar1988
Last active November 1, 2015 22:28
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save cajar1988/694e052518137d5d9d8c to your computer and use it in GitHub Desktop.
final int price;
if (vehicle == Vehicle.CAR) {
price = 17000;
} else if (vehicle == Vehicle.BIKE) {
price = 2000;
} else if (vehicle == Vehicle.SKATEBOARD) {
price = 500;
} else {
throw new IllegalStateException("Unsupported vehicle=" + vehicle);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment