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