Skip to content

Instantly share code, notes, and snippets.

@rcketscientist
Created February 21, 2017 15:24
Show Gist options
  • Save rcketscientist/99830fbbb1ce0e451bbf698aeeca0678 to your computer and use it in GitHub Desktop.
Save rcketscientist/99830fbbb1ce0e451bbf698aeeca0678 to your computer and use it in GitHub Desktop.
package com.drew.metadata;
public interface Key<T>
{
String getTagName();
String getTagType();
String getSummary();
String getDescription(T storedValue);
Object getValue();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment