@Override
 public String toString() {
   return "IndexInputDelegate to " + delegate.toString();
 }
 public IndexInputDelegate(IndexInput delegate) {
   super(delegate.toString());
   this.delegate = delegate;
 }