Skip to content

Instantly share code, notes, and snippets.

@SG-K

SG-K/gist.java Secret

Created July 22, 2020 13:26
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 SG-K/6ff692254d225696b5ac3c9e8837d7e3 to your computer and use it in GitHub Desktop.
Save SG-K/6ff692254d225696b5ac3c9e8837d7e3 to your computer and use it in GitHub Desktop.
public abstract class Filter<T> {
T value;
public T getValue() {
return value;
}
public void setValue(T value) {
this.value = value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment