*/
public BloomTokenFilter(Filter filter, boolean keepMembers, TokenStream in) {
super(in);
this.filter = filter;
this.keepMembers = keepMembers;
this.key = new Key();
this.termAtt = addAttribute(CharTermAttribute.class);
this.encoder = Charsets.UTF_8.newEncoder().
onMalformedInput(CodingErrorAction.REPORT).
onUnmappableCharacter(CodingErrorAction.REPORT);
}