@Override
 public void copyCurrentEvent(JsonParser jsonParser) throws IOException {
   if (this.delegateCopyMethods) {
     this.delegate.copyCurrentEvent(jsonParser);
     return;
   }
   super.copyCurrentEvent(jsonParser);
 }