Skip to content

Instantly share code, notes, and snippets.

@kamatama41
Created January 21, 2016 13:27
Show Gist options
  • Save kamatama41/191f065e27e08eb972c5 to your computer and use it in GitHub Desktop.
Save kamatama41/191f065e27e08eb972c5 to your computer and use it in GitHub Desktop.
Example of InnerClass
public class Currency {
public static enum Type {
JPY, USD, EUR,
}
private Type type;
private double rate;
// getter, setter 略
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment