Skip to content

Instantly share code, notes, and snippets.

@JLLeitschuh
Created November 24, 2015 01:15
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 JLLeitschuh/e28eca0c75ea01b224a2 to your computer and use it in GitHub Desktop.
Save JLLeitschuh/e28eca0c75ea01b224a2 to your computer and use it in GitHub Desktop.
private enum SupportedType {
NumberArray(Number[].class){
void putValue(NetworkTable table, String identifier, Object value){
}
};
private final Class clazz;
SupportedType(Class clazz){
this.clazz = clazz;
}
void putValue(NetworkTable table, String identifier, Object value) {
table.putValue(identifier, value);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment