Skip to content

Instantly share code, notes, and snippets.

@lacolaco
Created June 19, 2013 17:23
Show Gist options
  • Save lacolaco/5816103 to your computer and use it in GitHub Desktop.
Save lacolaco/5816103 to your computer and use it in GitHub Desktop.
public enum EnumHogehoge
{
hoge,
fuga,
piyo;
}
public class Hogehoge
{
public void filter(EnumHogehoge val)
{
switch(val)
{
case hoge:
//
case fuga:
//
case piyo:
//
default:
//
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment