Skip to content

Instantly share code, notes, and snippets.

@danveloper
Created February 12, 2013 04:37
Show Gist options
  • Save danveloper/4760276 to your computer and use it in GitHub Desktop.
Save danveloper/4760276 to your computer and use it in GitHub Desktop.
public class Product {
enum ProductType {
PRODUCT, SERVICE
}
String name;
ProductType type;
BigDecimal cost;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment