1 package net.sourceforge.argval.collection; 2 3 4 5 6 public interface Filter { 7 8 boolean accept(String value); 9 10 }