Skip to content

Instantly share code, notes, and snippets.

@SG-K

SG-K/gist.java Secret

Created July 22, 2020 13:26
Embed
What would you like to do?
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