AbstractDeserializer.java

  1. /*
  2.  * GovWay - A customizable API Gateway
  3.  * https://govway.org
  4.  *
  5.  * Copyright (c) 2005-2025 Link.it srl (https://link.it).
  6.  *
  7.  * This program is free software: you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License version 3, as published by
  9.  * the Free Software Foundation.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  18.  *
  19.  */
  20. package it.gov.fatturapa.sdi.fatturapa.v1_0.utils.serializer;

  21. import org.openspcoop2.generic_project.exception.DeserializerException;

  22. import it.gov.fatturapa.sdi.fatturapa.v1_0.CodiceArticoloType;
  23. import it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioLineeType;
  24. import it.gov.fatturapa.sdi.fatturapa.v1_0.ScontoMaggiorazioneType;
  25. import it.gov.fatturapa.sdi.fatturapa.v1_0.AltriDatiGestionaliType;
  26. import it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDocumentiCorrelatiType;
  27. import it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRitenutaType;
  28. import it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiTerzoIntermediarioType;
  29. import it.gov.fatturapa.sdi.fatturapa.v1_0.TerzoIntermediarioSoggettoEmittenteType;
  30. import it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioPagamentoType;
  31. import it.gov.fatturapa.sdi.fatturapa.v1_0.IdFiscaleType;
  32. import it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiRappresentanteType;
  33. import it.gov.fatturapa.sdi.fatturapa.v1_0.AnagraficaType;
  34. import it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCedenteType;
  35. import it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBeniServiziType;
  36. import it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRiepilogoType;
  37. import it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliDocumentoType;
  38. import it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliType;
  39. import it.gov.fatturapa.sdi.fatturapa.v1_0.DatiSALType;
  40. import it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDDTType;
  41. import it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasportoType;
  42. import it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaPrincipaleType;
  43. import it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasmissioneType;
  44. import it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaHeaderType;
  45. import it.gov.fatturapa.sdi.fatturapa.v1_0.CedentePrestatoreType;
  46. import it.gov.fatturapa.sdi.fatturapa.v1_0.RappresentanteFiscaleType;
  47. import it.gov.fatturapa.sdi.fatturapa.v1_0.CessionarioCommittenteType;
  48. import it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCessionarioType;
  49. import it.gov.fatturapa.sdi.fatturapa.v1_0.IndirizzoType;
  50. import it.gov.fatturapa.sdi.fatturapa.v1_0.IscrizioneREAType;
  51. import it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiType;
  52. import it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiVettoreType;
  53. import it.gov.fatturapa.sdi.fatturapa.v1_0.DatiVeicoliType;
  54. import it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaType;
  55. import it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaBodyType;
  56. import it.gov.fatturapa.sdi.fatturapa.v1_0.DatiPagamentoType;
  57. import it.gov.fatturapa.sdi.fatturapa.v1_0.AllegatiType;
  58. import it.gov.fatturapa.sdi.fatturapa.v1_0.DatiCassaPrevidenzialeType;
  59. import it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBolloType;
  60. import it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiTrasmittenteType;

  61. import java.io.InputStream;
  62. import java.io.File;

  63. /**    
  64.  * XML Deserializer of beans
  65.  *
  66.  * @author Poli Andrea (poli@link.it)
  67.  * @author $Author$
  68.  * @version $Rev$, $Date$
  69.  */

  70. public abstract class AbstractDeserializer extends org.openspcoop2.generic_project.serializer.AbstractDeserializerBase {



  71.     /*
  72.      =================================================================================
  73.      Object: CodiceArticoloType
  74.      =================================================================================
  75.     */
  76.    
  77.     /**
  78.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CodiceArticoloType}
  79.      *
  80.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CodiceArticoloType}
  81.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CodiceArticoloType}
  82.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  83.      */
  84.     public CodiceArticoloType readCodiceArticoloType(String fileName) throws DeserializerException {
  85.         return (CodiceArticoloType) this.xmlToObj(fileName, CodiceArticoloType.class);
  86.     }
  87.    
  88.     /**
  89.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CodiceArticoloType}
  90.      *
  91.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CodiceArticoloType}
  92.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CodiceArticoloType}
  93.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  94.      */
  95.     public CodiceArticoloType readCodiceArticoloType(File file) throws DeserializerException {
  96.         return (CodiceArticoloType) this.xmlToObj(file, CodiceArticoloType.class);
  97.     }
  98.    
  99.     /**
  100.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CodiceArticoloType}
  101.      *
  102.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CodiceArticoloType}
  103.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CodiceArticoloType}
  104.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  105.      */
  106.     public CodiceArticoloType readCodiceArticoloType(InputStream in) throws DeserializerException {
  107.         return (CodiceArticoloType) this.xmlToObj(in, CodiceArticoloType.class);
  108.     }  
  109.    
  110.     /**
  111.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CodiceArticoloType}
  112.      *
  113.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CodiceArticoloType}
  114.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CodiceArticoloType}
  115.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  116.      */
  117.     public CodiceArticoloType readCodiceArticoloType(byte[] in) throws DeserializerException {
  118.         return (CodiceArticoloType) this.xmlToObj(in, CodiceArticoloType.class);
  119.     }  
  120.    
  121.     /**
  122.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CodiceArticoloType}
  123.      *
  124.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CodiceArticoloType}
  125.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CodiceArticoloType}
  126.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  127.      */
  128.     public CodiceArticoloType readCodiceArticoloTypeFromString(String in) throws DeserializerException {
  129.         return (CodiceArticoloType) this.xmlToObj(in.getBytes(), CodiceArticoloType.class);
  130.     }  
  131.    
  132.    
  133.    
  134.     /*
  135.      =================================================================================
  136.      Object: DettaglioLineeType
  137.      =================================================================================
  138.     */
  139.    
  140.     /**
  141.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioLineeType}
  142.      *
  143.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioLineeType}
  144.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioLineeType}
  145.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  146.      */
  147.     public DettaglioLineeType readDettaglioLineeType(String fileName) throws DeserializerException {
  148.         return (DettaglioLineeType) this.xmlToObj(fileName, DettaglioLineeType.class);
  149.     }
  150.    
  151.     /**
  152.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioLineeType}
  153.      *
  154.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioLineeType}
  155.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioLineeType}
  156.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  157.      */
  158.     public DettaglioLineeType readDettaglioLineeType(File file) throws DeserializerException {
  159.         return (DettaglioLineeType) this.xmlToObj(file, DettaglioLineeType.class);
  160.     }
  161.    
  162.     /**
  163.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioLineeType}
  164.      *
  165.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioLineeType}
  166.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioLineeType}
  167.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  168.      */
  169.     public DettaglioLineeType readDettaglioLineeType(InputStream in) throws DeserializerException {
  170.         return (DettaglioLineeType) this.xmlToObj(in, DettaglioLineeType.class);
  171.     }  
  172.    
  173.     /**
  174.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioLineeType}
  175.      *
  176.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioLineeType}
  177.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioLineeType}
  178.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  179.      */
  180.     public DettaglioLineeType readDettaglioLineeType(byte[] in) throws DeserializerException {
  181.         return (DettaglioLineeType) this.xmlToObj(in, DettaglioLineeType.class);
  182.     }  
  183.    
  184.     /**
  185.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioLineeType}
  186.      *
  187.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioLineeType}
  188.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioLineeType}
  189.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  190.      */
  191.     public DettaglioLineeType readDettaglioLineeTypeFromString(String in) throws DeserializerException {
  192.         return (DettaglioLineeType) this.xmlToObj(in.getBytes(), DettaglioLineeType.class);
  193.     }  
  194.    
  195.    
  196.    
  197.     /*
  198.      =================================================================================
  199.      Object: ScontoMaggiorazioneType
  200.      =================================================================================
  201.     */
  202.    
  203.     /**
  204.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ScontoMaggiorazioneType}
  205.      *
  206.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ScontoMaggiorazioneType}
  207.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ScontoMaggiorazioneType}
  208.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  209.      */
  210.     public ScontoMaggiorazioneType readScontoMaggiorazioneType(String fileName) throws DeserializerException {
  211.         return (ScontoMaggiorazioneType) this.xmlToObj(fileName, ScontoMaggiorazioneType.class);
  212.     }
  213.    
  214.     /**
  215.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ScontoMaggiorazioneType}
  216.      *
  217.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ScontoMaggiorazioneType}
  218.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ScontoMaggiorazioneType}
  219.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  220.      */
  221.     public ScontoMaggiorazioneType readScontoMaggiorazioneType(File file) throws DeserializerException {
  222.         return (ScontoMaggiorazioneType) this.xmlToObj(file, ScontoMaggiorazioneType.class);
  223.     }
  224.    
  225.     /**
  226.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ScontoMaggiorazioneType}
  227.      *
  228.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ScontoMaggiorazioneType}
  229.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ScontoMaggiorazioneType}
  230.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  231.      */
  232.     public ScontoMaggiorazioneType readScontoMaggiorazioneType(InputStream in) throws DeserializerException {
  233.         return (ScontoMaggiorazioneType) this.xmlToObj(in, ScontoMaggiorazioneType.class);
  234.     }  
  235.    
  236.     /**
  237.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ScontoMaggiorazioneType}
  238.      *
  239.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ScontoMaggiorazioneType}
  240.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ScontoMaggiorazioneType}
  241.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  242.      */
  243.     public ScontoMaggiorazioneType readScontoMaggiorazioneType(byte[] in) throws DeserializerException {
  244.         return (ScontoMaggiorazioneType) this.xmlToObj(in, ScontoMaggiorazioneType.class);
  245.     }  
  246.    
  247.     /**
  248.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ScontoMaggiorazioneType}
  249.      *
  250.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ScontoMaggiorazioneType}
  251.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ScontoMaggiorazioneType}
  252.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  253.      */
  254.     public ScontoMaggiorazioneType readScontoMaggiorazioneTypeFromString(String in) throws DeserializerException {
  255.         return (ScontoMaggiorazioneType) this.xmlToObj(in.getBytes(), ScontoMaggiorazioneType.class);
  256.     }  
  257.    
  258.    
  259.    
  260.     /*
  261.      =================================================================================
  262.      Object: AltriDatiGestionaliType
  263.      =================================================================================
  264.     */
  265.    
  266.     /**
  267.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AltriDatiGestionaliType}
  268.      *
  269.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AltriDatiGestionaliType}
  270.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AltriDatiGestionaliType}
  271.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  272.      */
  273.     public AltriDatiGestionaliType readAltriDatiGestionaliType(String fileName) throws DeserializerException {
  274.         return (AltriDatiGestionaliType) this.xmlToObj(fileName, AltriDatiGestionaliType.class);
  275.     }
  276.    
  277.     /**
  278.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AltriDatiGestionaliType}
  279.      *
  280.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AltriDatiGestionaliType}
  281.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AltriDatiGestionaliType}
  282.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  283.      */
  284.     public AltriDatiGestionaliType readAltriDatiGestionaliType(File file) throws DeserializerException {
  285.         return (AltriDatiGestionaliType) this.xmlToObj(file, AltriDatiGestionaliType.class);
  286.     }
  287.    
  288.     /**
  289.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AltriDatiGestionaliType}
  290.      *
  291.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AltriDatiGestionaliType}
  292.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AltriDatiGestionaliType}
  293.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  294.      */
  295.     public AltriDatiGestionaliType readAltriDatiGestionaliType(InputStream in) throws DeserializerException {
  296.         return (AltriDatiGestionaliType) this.xmlToObj(in, AltriDatiGestionaliType.class);
  297.     }  
  298.    
  299.     /**
  300.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AltriDatiGestionaliType}
  301.      *
  302.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AltriDatiGestionaliType}
  303.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AltriDatiGestionaliType}
  304.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  305.      */
  306.     public AltriDatiGestionaliType readAltriDatiGestionaliType(byte[] in) throws DeserializerException {
  307.         return (AltriDatiGestionaliType) this.xmlToObj(in, AltriDatiGestionaliType.class);
  308.     }  
  309.    
  310.     /**
  311.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AltriDatiGestionaliType}
  312.      *
  313.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AltriDatiGestionaliType}
  314.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AltriDatiGestionaliType}
  315.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  316.      */
  317.     public AltriDatiGestionaliType readAltriDatiGestionaliTypeFromString(String in) throws DeserializerException {
  318.         return (AltriDatiGestionaliType) this.xmlToObj(in.getBytes(), AltriDatiGestionaliType.class);
  319.     }  
  320.    
  321.    
  322.    
  323.     /*
  324.      =================================================================================
  325.      Object: DatiDocumentiCorrelatiType
  326.      =================================================================================
  327.     */
  328.    
  329.     /**
  330.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDocumentiCorrelatiType}
  331.      *
  332.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDocumentiCorrelatiType}
  333.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDocumentiCorrelatiType}
  334.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  335.      */
  336.     public DatiDocumentiCorrelatiType readDatiDocumentiCorrelatiType(String fileName) throws DeserializerException {
  337.         return (DatiDocumentiCorrelatiType) this.xmlToObj(fileName, DatiDocumentiCorrelatiType.class);
  338.     }
  339.    
  340.     /**
  341.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDocumentiCorrelatiType}
  342.      *
  343.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDocumentiCorrelatiType}
  344.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDocumentiCorrelatiType}
  345.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  346.      */
  347.     public DatiDocumentiCorrelatiType readDatiDocumentiCorrelatiType(File file) throws DeserializerException {
  348.         return (DatiDocumentiCorrelatiType) this.xmlToObj(file, DatiDocumentiCorrelatiType.class);
  349.     }
  350.    
  351.     /**
  352.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDocumentiCorrelatiType}
  353.      *
  354.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDocumentiCorrelatiType}
  355.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDocumentiCorrelatiType}
  356.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  357.      */
  358.     public DatiDocumentiCorrelatiType readDatiDocumentiCorrelatiType(InputStream in) throws DeserializerException {
  359.         return (DatiDocumentiCorrelatiType) this.xmlToObj(in, DatiDocumentiCorrelatiType.class);
  360.     }  
  361.    
  362.     /**
  363.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDocumentiCorrelatiType}
  364.      *
  365.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDocumentiCorrelatiType}
  366.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDocumentiCorrelatiType}
  367.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  368.      */
  369.     public DatiDocumentiCorrelatiType readDatiDocumentiCorrelatiType(byte[] in) throws DeserializerException {
  370.         return (DatiDocumentiCorrelatiType) this.xmlToObj(in, DatiDocumentiCorrelatiType.class);
  371.     }  
  372.    
  373.     /**
  374.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDocumentiCorrelatiType}
  375.      *
  376.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDocumentiCorrelatiType}
  377.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDocumentiCorrelatiType}
  378.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  379.      */
  380.     public DatiDocumentiCorrelatiType readDatiDocumentiCorrelatiTypeFromString(String in) throws DeserializerException {
  381.         return (DatiDocumentiCorrelatiType) this.xmlToObj(in.getBytes(), DatiDocumentiCorrelatiType.class);
  382.     }  
  383.    
  384.    
  385.    
  386.     /*
  387.      =================================================================================
  388.      Object: DatiRitenutaType
  389.      =================================================================================
  390.     */
  391.    
  392.     /**
  393.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRitenutaType}
  394.      *
  395.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRitenutaType}
  396.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRitenutaType}
  397.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  398.      */
  399.     public DatiRitenutaType readDatiRitenutaType(String fileName) throws DeserializerException {
  400.         return (DatiRitenutaType) this.xmlToObj(fileName, DatiRitenutaType.class);
  401.     }
  402.    
  403.     /**
  404.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRitenutaType}
  405.      *
  406.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRitenutaType}
  407.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRitenutaType}
  408.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  409.      */
  410.     public DatiRitenutaType readDatiRitenutaType(File file) throws DeserializerException {
  411.         return (DatiRitenutaType) this.xmlToObj(file, DatiRitenutaType.class);
  412.     }
  413.    
  414.     /**
  415.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRitenutaType}
  416.      *
  417.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRitenutaType}
  418.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRitenutaType}
  419.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  420.      */
  421.     public DatiRitenutaType readDatiRitenutaType(InputStream in) throws DeserializerException {
  422.         return (DatiRitenutaType) this.xmlToObj(in, DatiRitenutaType.class);
  423.     }  
  424.    
  425.     /**
  426.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRitenutaType}
  427.      *
  428.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRitenutaType}
  429.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRitenutaType}
  430.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  431.      */
  432.     public DatiRitenutaType readDatiRitenutaType(byte[] in) throws DeserializerException {
  433.         return (DatiRitenutaType) this.xmlToObj(in, DatiRitenutaType.class);
  434.     }  
  435.    
  436.     /**
  437.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRitenutaType}
  438.      *
  439.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRitenutaType}
  440.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRitenutaType}
  441.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  442.      */
  443.     public DatiRitenutaType readDatiRitenutaTypeFromString(String in) throws DeserializerException {
  444.         return (DatiRitenutaType) this.xmlToObj(in.getBytes(), DatiRitenutaType.class);
  445.     }  
  446.    
  447.    
  448.    
  449.     /*
  450.      =================================================================================
  451.      Object: DatiAnagraficiTerzoIntermediarioType
  452.      =================================================================================
  453.     */
  454.    
  455.     /**
  456.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiTerzoIntermediarioType}
  457.      *
  458.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiTerzoIntermediarioType}
  459.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiTerzoIntermediarioType}
  460.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  461.      */
  462.     public DatiAnagraficiTerzoIntermediarioType readDatiAnagraficiTerzoIntermediarioType(String fileName) throws DeserializerException {
  463.         return (DatiAnagraficiTerzoIntermediarioType) this.xmlToObj(fileName, DatiAnagraficiTerzoIntermediarioType.class);
  464.     }
  465.    
  466.     /**
  467.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiTerzoIntermediarioType}
  468.      *
  469.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiTerzoIntermediarioType}
  470.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiTerzoIntermediarioType}
  471.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  472.      */
  473.     public DatiAnagraficiTerzoIntermediarioType readDatiAnagraficiTerzoIntermediarioType(File file) throws DeserializerException {
  474.         return (DatiAnagraficiTerzoIntermediarioType) this.xmlToObj(file, DatiAnagraficiTerzoIntermediarioType.class);
  475.     }
  476.    
  477.     /**
  478.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiTerzoIntermediarioType}
  479.      *
  480.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiTerzoIntermediarioType}
  481.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiTerzoIntermediarioType}
  482.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  483.      */
  484.     public DatiAnagraficiTerzoIntermediarioType readDatiAnagraficiTerzoIntermediarioType(InputStream in) throws DeserializerException {
  485.         return (DatiAnagraficiTerzoIntermediarioType) this.xmlToObj(in, DatiAnagraficiTerzoIntermediarioType.class);
  486.     }  
  487.    
  488.     /**
  489.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiTerzoIntermediarioType}
  490.      *
  491.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiTerzoIntermediarioType}
  492.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiTerzoIntermediarioType}
  493.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  494.      */
  495.     public DatiAnagraficiTerzoIntermediarioType readDatiAnagraficiTerzoIntermediarioType(byte[] in) throws DeserializerException {
  496.         return (DatiAnagraficiTerzoIntermediarioType) this.xmlToObj(in, DatiAnagraficiTerzoIntermediarioType.class);
  497.     }  
  498.    
  499.     /**
  500.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiTerzoIntermediarioType}
  501.      *
  502.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiTerzoIntermediarioType}
  503.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiTerzoIntermediarioType}
  504.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  505.      */
  506.     public DatiAnagraficiTerzoIntermediarioType readDatiAnagraficiTerzoIntermediarioTypeFromString(String in) throws DeserializerException {
  507.         return (DatiAnagraficiTerzoIntermediarioType) this.xmlToObj(in.getBytes(), DatiAnagraficiTerzoIntermediarioType.class);
  508.     }  
  509.    
  510.    
  511.    
  512.     /*
  513.      =================================================================================
  514.      Object: TerzoIntermediarioSoggettoEmittenteType
  515.      =================================================================================
  516.     */
  517.    
  518.     /**
  519.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.TerzoIntermediarioSoggettoEmittenteType}
  520.      *
  521.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.TerzoIntermediarioSoggettoEmittenteType}
  522.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.TerzoIntermediarioSoggettoEmittenteType}
  523.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  524.      */
  525.     public TerzoIntermediarioSoggettoEmittenteType readTerzoIntermediarioSoggettoEmittenteType(String fileName) throws DeserializerException {
  526.         return (TerzoIntermediarioSoggettoEmittenteType) this.xmlToObj(fileName, TerzoIntermediarioSoggettoEmittenteType.class);
  527.     }
  528.    
  529.     /**
  530.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.TerzoIntermediarioSoggettoEmittenteType}
  531.      *
  532.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.TerzoIntermediarioSoggettoEmittenteType}
  533.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.TerzoIntermediarioSoggettoEmittenteType}
  534.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  535.      */
  536.     public TerzoIntermediarioSoggettoEmittenteType readTerzoIntermediarioSoggettoEmittenteType(File file) throws DeserializerException {
  537.         return (TerzoIntermediarioSoggettoEmittenteType) this.xmlToObj(file, TerzoIntermediarioSoggettoEmittenteType.class);
  538.     }
  539.    
  540.     /**
  541.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.TerzoIntermediarioSoggettoEmittenteType}
  542.      *
  543.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.TerzoIntermediarioSoggettoEmittenteType}
  544.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.TerzoIntermediarioSoggettoEmittenteType}
  545.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  546.      */
  547.     public TerzoIntermediarioSoggettoEmittenteType readTerzoIntermediarioSoggettoEmittenteType(InputStream in) throws DeserializerException {
  548.         return (TerzoIntermediarioSoggettoEmittenteType) this.xmlToObj(in, TerzoIntermediarioSoggettoEmittenteType.class);
  549.     }  
  550.    
  551.     /**
  552.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.TerzoIntermediarioSoggettoEmittenteType}
  553.      *
  554.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.TerzoIntermediarioSoggettoEmittenteType}
  555.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.TerzoIntermediarioSoggettoEmittenteType}
  556.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  557.      */
  558.     public TerzoIntermediarioSoggettoEmittenteType readTerzoIntermediarioSoggettoEmittenteType(byte[] in) throws DeserializerException {
  559.         return (TerzoIntermediarioSoggettoEmittenteType) this.xmlToObj(in, TerzoIntermediarioSoggettoEmittenteType.class);
  560.     }  
  561.    
  562.     /**
  563.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.TerzoIntermediarioSoggettoEmittenteType}
  564.      *
  565.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.TerzoIntermediarioSoggettoEmittenteType}
  566.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.TerzoIntermediarioSoggettoEmittenteType}
  567.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  568.      */
  569.     public TerzoIntermediarioSoggettoEmittenteType readTerzoIntermediarioSoggettoEmittenteTypeFromString(String in) throws DeserializerException {
  570.         return (TerzoIntermediarioSoggettoEmittenteType) this.xmlToObj(in.getBytes(), TerzoIntermediarioSoggettoEmittenteType.class);
  571.     }  
  572.    
  573.    
  574.    
  575.     /*
  576.      =================================================================================
  577.      Object: DettaglioPagamentoType
  578.      =================================================================================
  579.     */
  580.    
  581.     /**
  582.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioPagamentoType}
  583.      *
  584.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioPagamentoType}
  585.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioPagamentoType}
  586.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  587.      */
  588.     public DettaglioPagamentoType readDettaglioPagamentoType(String fileName) throws DeserializerException {
  589.         return (DettaglioPagamentoType) this.xmlToObj(fileName, DettaglioPagamentoType.class);
  590.     }
  591.    
  592.     /**
  593.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioPagamentoType}
  594.      *
  595.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioPagamentoType}
  596.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioPagamentoType}
  597.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  598.      */
  599.     public DettaglioPagamentoType readDettaglioPagamentoType(File file) throws DeserializerException {
  600.         return (DettaglioPagamentoType) this.xmlToObj(file, DettaglioPagamentoType.class);
  601.     }
  602.    
  603.     /**
  604.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioPagamentoType}
  605.      *
  606.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioPagamentoType}
  607.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioPagamentoType}
  608.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  609.      */
  610.     public DettaglioPagamentoType readDettaglioPagamentoType(InputStream in) throws DeserializerException {
  611.         return (DettaglioPagamentoType) this.xmlToObj(in, DettaglioPagamentoType.class);
  612.     }  
  613.    
  614.     /**
  615.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioPagamentoType}
  616.      *
  617.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioPagamentoType}
  618.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioPagamentoType}
  619.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  620.      */
  621.     public DettaglioPagamentoType readDettaglioPagamentoType(byte[] in) throws DeserializerException {
  622.         return (DettaglioPagamentoType) this.xmlToObj(in, DettaglioPagamentoType.class);
  623.     }  
  624.    
  625.     /**
  626.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioPagamentoType}
  627.      *
  628.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioPagamentoType}
  629.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DettaglioPagamentoType}
  630.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  631.      */
  632.     public DettaglioPagamentoType readDettaglioPagamentoTypeFromString(String in) throws DeserializerException {
  633.         return (DettaglioPagamentoType) this.xmlToObj(in.getBytes(), DettaglioPagamentoType.class);
  634.     }  
  635.    
  636.    
  637.    
  638.     /*
  639.      =================================================================================
  640.      Object: IdFiscaleType
  641.      =================================================================================
  642.     */
  643.    
  644.     /**
  645.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IdFiscaleType}
  646.      *
  647.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IdFiscaleType}
  648.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IdFiscaleType}
  649.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  650.      */
  651.     public IdFiscaleType readIdFiscaleType(String fileName) throws DeserializerException {
  652.         return (IdFiscaleType) this.xmlToObj(fileName, IdFiscaleType.class);
  653.     }
  654.    
  655.     /**
  656.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IdFiscaleType}
  657.      *
  658.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IdFiscaleType}
  659.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IdFiscaleType}
  660.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  661.      */
  662.     public IdFiscaleType readIdFiscaleType(File file) throws DeserializerException {
  663.         return (IdFiscaleType) this.xmlToObj(file, IdFiscaleType.class);
  664.     }
  665.    
  666.     /**
  667.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IdFiscaleType}
  668.      *
  669.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IdFiscaleType}
  670.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IdFiscaleType}
  671.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  672.      */
  673.     public IdFiscaleType readIdFiscaleType(InputStream in) throws DeserializerException {
  674.         return (IdFiscaleType) this.xmlToObj(in, IdFiscaleType.class);
  675.     }  
  676.    
  677.     /**
  678.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IdFiscaleType}
  679.      *
  680.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IdFiscaleType}
  681.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IdFiscaleType}
  682.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  683.      */
  684.     public IdFiscaleType readIdFiscaleType(byte[] in) throws DeserializerException {
  685.         return (IdFiscaleType) this.xmlToObj(in, IdFiscaleType.class);
  686.     }  
  687.    
  688.     /**
  689.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IdFiscaleType}
  690.      *
  691.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IdFiscaleType}
  692.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IdFiscaleType}
  693.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  694.      */
  695.     public IdFiscaleType readIdFiscaleTypeFromString(String in) throws DeserializerException {
  696.         return (IdFiscaleType) this.xmlToObj(in.getBytes(), IdFiscaleType.class);
  697.     }  
  698.    
  699.    
  700.    
  701.     /*
  702.      =================================================================================
  703.      Object: DatiAnagraficiRappresentanteType
  704.      =================================================================================
  705.     */
  706.    
  707.     /**
  708.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiRappresentanteType}
  709.      *
  710.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiRappresentanteType}
  711.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiRappresentanteType}
  712.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  713.      */
  714.     public DatiAnagraficiRappresentanteType readDatiAnagraficiRappresentanteType(String fileName) throws DeserializerException {
  715.         return (DatiAnagraficiRappresentanteType) this.xmlToObj(fileName, DatiAnagraficiRappresentanteType.class);
  716.     }
  717.    
  718.     /**
  719.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiRappresentanteType}
  720.      *
  721.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiRappresentanteType}
  722.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiRappresentanteType}
  723.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  724.      */
  725.     public DatiAnagraficiRappresentanteType readDatiAnagraficiRappresentanteType(File file) throws DeserializerException {
  726.         return (DatiAnagraficiRappresentanteType) this.xmlToObj(file, DatiAnagraficiRappresentanteType.class);
  727.     }
  728.    
  729.     /**
  730.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiRappresentanteType}
  731.      *
  732.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiRappresentanteType}
  733.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiRappresentanteType}
  734.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  735.      */
  736.     public DatiAnagraficiRappresentanteType readDatiAnagraficiRappresentanteType(InputStream in) throws DeserializerException {
  737.         return (DatiAnagraficiRappresentanteType) this.xmlToObj(in, DatiAnagraficiRappresentanteType.class);
  738.     }  
  739.    
  740.     /**
  741.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiRappresentanteType}
  742.      *
  743.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiRappresentanteType}
  744.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiRappresentanteType}
  745.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  746.      */
  747.     public DatiAnagraficiRappresentanteType readDatiAnagraficiRappresentanteType(byte[] in) throws DeserializerException {
  748.         return (DatiAnagraficiRappresentanteType) this.xmlToObj(in, DatiAnagraficiRappresentanteType.class);
  749.     }  
  750.    
  751.     /**
  752.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiRappresentanteType}
  753.      *
  754.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiRappresentanteType}
  755.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiRappresentanteType}
  756.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  757.      */
  758.     public DatiAnagraficiRappresentanteType readDatiAnagraficiRappresentanteTypeFromString(String in) throws DeserializerException {
  759.         return (DatiAnagraficiRappresentanteType) this.xmlToObj(in.getBytes(), DatiAnagraficiRappresentanteType.class);
  760.     }  
  761.    
  762.    
  763.    
  764.     /*
  765.      =================================================================================
  766.      Object: AnagraficaType
  767.      =================================================================================
  768.     */
  769.    
  770.     /**
  771.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AnagraficaType}
  772.      *
  773.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AnagraficaType}
  774.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AnagraficaType}
  775.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  776.      */
  777.     public AnagraficaType readAnagraficaType(String fileName) throws DeserializerException {
  778.         return (AnagraficaType) this.xmlToObj(fileName, AnagraficaType.class);
  779.     }
  780.    
  781.     /**
  782.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AnagraficaType}
  783.      *
  784.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AnagraficaType}
  785.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AnagraficaType}
  786.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  787.      */
  788.     public AnagraficaType readAnagraficaType(File file) throws DeserializerException {
  789.         return (AnagraficaType) this.xmlToObj(file, AnagraficaType.class);
  790.     }
  791.    
  792.     /**
  793.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AnagraficaType}
  794.      *
  795.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AnagraficaType}
  796.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AnagraficaType}
  797.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  798.      */
  799.     public AnagraficaType readAnagraficaType(InputStream in) throws DeserializerException {
  800.         return (AnagraficaType) this.xmlToObj(in, AnagraficaType.class);
  801.     }  
  802.    
  803.     /**
  804.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AnagraficaType}
  805.      *
  806.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AnagraficaType}
  807.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AnagraficaType}
  808.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  809.      */
  810.     public AnagraficaType readAnagraficaType(byte[] in) throws DeserializerException {
  811.         return (AnagraficaType) this.xmlToObj(in, AnagraficaType.class);
  812.     }  
  813.    
  814.     /**
  815.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AnagraficaType}
  816.      *
  817.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AnagraficaType}
  818.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AnagraficaType}
  819.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  820.      */
  821.     public AnagraficaType readAnagraficaTypeFromString(String in) throws DeserializerException {
  822.         return (AnagraficaType) this.xmlToObj(in.getBytes(), AnagraficaType.class);
  823.     }  
  824.    
  825.    
  826.    
  827.     /*
  828.      =================================================================================
  829.      Object: DatiAnagraficiCedenteType
  830.      =================================================================================
  831.     */
  832.    
  833.     /**
  834.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCedenteType}
  835.      *
  836.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCedenteType}
  837.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCedenteType}
  838.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  839.      */
  840.     public DatiAnagraficiCedenteType readDatiAnagraficiCedenteType(String fileName) throws DeserializerException {
  841.         return (DatiAnagraficiCedenteType) this.xmlToObj(fileName, DatiAnagraficiCedenteType.class);
  842.     }
  843.    
  844.     /**
  845.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCedenteType}
  846.      *
  847.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCedenteType}
  848.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCedenteType}
  849.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  850.      */
  851.     public DatiAnagraficiCedenteType readDatiAnagraficiCedenteType(File file) throws DeserializerException {
  852.         return (DatiAnagraficiCedenteType) this.xmlToObj(file, DatiAnagraficiCedenteType.class);
  853.     }
  854.    
  855.     /**
  856.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCedenteType}
  857.      *
  858.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCedenteType}
  859.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCedenteType}
  860.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  861.      */
  862.     public DatiAnagraficiCedenteType readDatiAnagraficiCedenteType(InputStream in) throws DeserializerException {
  863.         return (DatiAnagraficiCedenteType) this.xmlToObj(in, DatiAnagraficiCedenteType.class);
  864.     }  
  865.    
  866.     /**
  867.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCedenteType}
  868.      *
  869.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCedenteType}
  870.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCedenteType}
  871.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  872.      */
  873.     public DatiAnagraficiCedenteType readDatiAnagraficiCedenteType(byte[] in) throws DeserializerException {
  874.         return (DatiAnagraficiCedenteType) this.xmlToObj(in, DatiAnagraficiCedenteType.class);
  875.     }  
  876.    
  877.     /**
  878.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCedenteType}
  879.      *
  880.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCedenteType}
  881.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCedenteType}
  882.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  883.      */
  884.     public DatiAnagraficiCedenteType readDatiAnagraficiCedenteTypeFromString(String in) throws DeserializerException {
  885.         return (DatiAnagraficiCedenteType) this.xmlToObj(in.getBytes(), DatiAnagraficiCedenteType.class);
  886.     }  
  887.    
  888.    
  889.    
  890.     /*
  891.      =================================================================================
  892.      Object: DatiBeniServiziType
  893.      =================================================================================
  894.     */
  895.    
  896.     /**
  897.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBeniServiziType}
  898.      *
  899.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBeniServiziType}
  900.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBeniServiziType}
  901.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  902.      */
  903.     public DatiBeniServiziType readDatiBeniServiziType(String fileName) throws DeserializerException {
  904.         return (DatiBeniServiziType) this.xmlToObj(fileName, DatiBeniServiziType.class);
  905.     }
  906.    
  907.     /**
  908.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBeniServiziType}
  909.      *
  910.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBeniServiziType}
  911.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBeniServiziType}
  912.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  913.      */
  914.     public DatiBeniServiziType readDatiBeniServiziType(File file) throws DeserializerException {
  915.         return (DatiBeniServiziType) this.xmlToObj(file, DatiBeniServiziType.class);
  916.     }
  917.    
  918.     /**
  919.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBeniServiziType}
  920.      *
  921.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBeniServiziType}
  922.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBeniServiziType}
  923.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  924.      */
  925.     public DatiBeniServiziType readDatiBeniServiziType(InputStream in) throws DeserializerException {
  926.         return (DatiBeniServiziType) this.xmlToObj(in, DatiBeniServiziType.class);
  927.     }  
  928.    
  929.     /**
  930.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBeniServiziType}
  931.      *
  932.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBeniServiziType}
  933.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBeniServiziType}
  934.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  935.      */
  936.     public DatiBeniServiziType readDatiBeniServiziType(byte[] in) throws DeserializerException {
  937.         return (DatiBeniServiziType) this.xmlToObj(in, DatiBeniServiziType.class);
  938.     }  
  939.    
  940.     /**
  941.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBeniServiziType}
  942.      *
  943.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBeniServiziType}
  944.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBeniServiziType}
  945.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  946.      */
  947.     public DatiBeniServiziType readDatiBeniServiziTypeFromString(String in) throws DeserializerException {
  948.         return (DatiBeniServiziType) this.xmlToObj(in.getBytes(), DatiBeniServiziType.class);
  949.     }  
  950.    
  951.    
  952.    
  953.     /*
  954.      =================================================================================
  955.      Object: DatiRiepilogoType
  956.      =================================================================================
  957.     */
  958.    
  959.     /**
  960.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRiepilogoType}
  961.      *
  962.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRiepilogoType}
  963.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRiepilogoType}
  964.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  965.      */
  966.     public DatiRiepilogoType readDatiRiepilogoType(String fileName) throws DeserializerException {
  967.         return (DatiRiepilogoType) this.xmlToObj(fileName, DatiRiepilogoType.class);
  968.     }
  969.    
  970.     /**
  971.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRiepilogoType}
  972.      *
  973.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRiepilogoType}
  974.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRiepilogoType}
  975.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  976.      */
  977.     public DatiRiepilogoType readDatiRiepilogoType(File file) throws DeserializerException {
  978.         return (DatiRiepilogoType) this.xmlToObj(file, DatiRiepilogoType.class);
  979.     }
  980.    
  981.     /**
  982.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRiepilogoType}
  983.      *
  984.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRiepilogoType}
  985.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRiepilogoType}
  986.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  987.      */
  988.     public DatiRiepilogoType readDatiRiepilogoType(InputStream in) throws DeserializerException {
  989.         return (DatiRiepilogoType) this.xmlToObj(in, DatiRiepilogoType.class);
  990.     }  
  991.    
  992.     /**
  993.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRiepilogoType}
  994.      *
  995.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRiepilogoType}
  996.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRiepilogoType}
  997.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  998.      */
  999.     public DatiRiepilogoType readDatiRiepilogoType(byte[] in) throws DeserializerException {
  1000.         return (DatiRiepilogoType) this.xmlToObj(in, DatiRiepilogoType.class);
  1001.     }  
  1002.    
  1003.     /**
  1004.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRiepilogoType}
  1005.      *
  1006.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRiepilogoType}
  1007.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiRiepilogoType}
  1008.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1009.      */
  1010.     public DatiRiepilogoType readDatiRiepilogoTypeFromString(String in) throws DeserializerException {
  1011.         return (DatiRiepilogoType) this.xmlToObj(in.getBytes(), DatiRiepilogoType.class);
  1012.     }  
  1013.    
  1014.    
  1015.    
  1016.     /*
  1017.      =================================================================================
  1018.      Object: DatiGeneraliDocumentoType
  1019.      =================================================================================
  1020.     */
  1021.    
  1022.     /**
  1023.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliDocumentoType}
  1024.      *
  1025.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliDocumentoType}
  1026.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliDocumentoType}
  1027.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1028.      */
  1029.     public DatiGeneraliDocumentoType readDatiGeneraliDocumentoType(String fileName) throws DeserializerException {
  1030.         return (DatiGeneraliDocumentoType) this.xmlToObj(fileName, DatiGeneraliDocumentoType.class);
  1031.     }
  1032.    
  1033.     /**
  1034.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliDocumentoType}
  1035.      *
  1036.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliDocumentoType}
  1037.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliDocumentoType}
  1038.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1039.      */
  1040.     public DatiGeneraliDocumentoType readDatiGeneraliDocumentoType(File file) throws DeserializerException {
  1041.         return (DatiGeneraliDocumentoType) this.xmlToObj(file, DatiGeneraliDocumentoType.class);
  1042.     }
  1043.    
  1044.     /**
  1045.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliDocumentoType}
  1046.      *
  1047.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliDocumentoType}
  1048.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliDocumentoType}
  1049.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1050.      */
  1051.     public DatiGeneraliDocumentoType readDatiGeneraliDocumentoType(InputStream in) throws DeserializerException {
  1052.         return (DatiGeneraliDocumentoType) this.xmlToObj(in, DatiGeneraliDocumentoType.class);
  1053.     }  
  1054.    
  1055.     /**
  1056.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliDocumentoType}
  1057.      *
  1058.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliDocumentoType}
  1059.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliDocumentoType}
  1060.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1061.      */
  1062.     public DatiGeneraliDocumentoType readDatiGeneraliDocumentoType(byte[] in) throws DeserializerException {
  1063.         return (DatiGeneraliDocumentoType) this.xmlToObj(in, DatiGeneraliDocumentoType.class);
  1064.     }  
  1065.    
  1066.     /**
  1067.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliDocumentoType}
  1068.      *
  1069.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliDocumentoType}
  1070.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliDocumentoType}
  1071.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1072.      */
  1073.     public DatiGeneraliDocumentoType readDatiGeneraliDocumentoTypeFromString(String in) throws DeserializerException {
  1074.         return (DatiGeneraliDocumentoType) this.xmlToObj(in.getBytes(), DatiGeneraliDocumentoType.class);
  1075.     }  
  1076.    
  1077.    
  1078.    
  1079.     /*
  1080.      =================================================================================
  1081.      Object: DatiGeneraliType
  1082.      =================================================================================
  1083.     */
  1084.    
  1085.     /**
  1086.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliType}
  1087.      *
  1088.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliType}
  1089.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliType}
  1090.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1091.      */
  1092.     public DatiGeneraliType readDatiGeneraliType(String fileName) throws DeserializerException {
  1093.         return (DatiGeneraliType) this.xmlToObj(fileName, DatiGeneraliType.class);
  1094.     }
  1095.    
  1096.     /**
  1097.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliType}
  1098.      *
  1099.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliType}
  1100.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliType}
  1101.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1102.      */
  1103.     public DatiGeneraliType readDatiGeneraliType(File file) throws DeserializerException {
  1104.         return (DatiGeneraliType) this.xmlToObj(file, DatiGeneraliType.class);
  1105.     }
  1106.    
  1107.     /**
  1108.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliType}
  1109.      *
  1110.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliType}
  1111.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliType}
  1112.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1113.      */
  1114.     public DatiGeneraliType readDatiGeneraliType(InputStream in) throws DeserializerException {
  1115.         return (DatiGeneraliType) this.xmlToObj(in, DatiGeneraliType.class);
  1116.     }  
  1117.    
  1118.     /**
  1119.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliType}
  1120.      *
  1121.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliType}
  1122.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliType}
  1123.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1124.      */
  1125.     public DatiGeneraliType readDatiGeneraliType(byte[] in) throws DeserializerException {
  1126.         return (DatiGeneraliType) this.xmlToObj(in, DatiGeneraliType.class);
  1127.     }  
  1128.    
  1129.     /**
  1130.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliType}
  1131.      *
  1132.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliType}
  1133.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiGeneraliType}
  1134.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1135.      */
  1136.     public DatiGeneraliType readDatiGeneraliTypeFromString(String in) throws DeserializerException {
  1137.         return (DatiGeneraliType) this.xmlToObj(in.getBytes(), DatiGeneraliType.class);
  1138.     }  
  1139.    
  1140.    
  1141.    
  1142.     /*
  1143.      =================================================================================
  1144.      Object: DatiSALType
  1145.      =================================================================================
  1146.     */
  1147.    
  1148.     /**
  1149.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiSALType}
  1150.      *
  1151.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiSALType}
  1152.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiSALType}
  1153.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1154.      */
  1155.     public DatiSALType readDatiSALType(String fileName) throws DeserializerException {
  1156.         return (DatiSALType) this.xmlToObj(fileName, DatiSALType.class);
  1157.     }
  1158.    
  1159.     /**
  1160.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiSALType}
  1161.      *
  1162.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiSALType}
  1163.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiSALType}
  1164.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1165.      */
  1166.     public DatiSALType readDatiSALType(File file) throws DeserializerException {
  1167.         return (DatiSALType) this.xmlToObj(file, DatiSALType.class);
  1168.     }
  1169.    
  1170.     /**
  1171.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiSALType}
  1172.      *
  1173.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiSALType}
  1174.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiSALType}
  1175.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1176.      */
  1177.     public DatiSALType readDatiSALType(InputStream in) throws DeserializerException {
  1178.         return (DatiSALType) this.xmlToObj(in, DatiSALType.class);
  1179.     }  
  1180.    
  1181.     /**
  1182.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiSALType}
  1183.      *
  1184.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiSALType}
  1185.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiSALType}
  1186.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1187.      */
  1188.     public DatiSALType readDatiSALType(byte[] in) throws DeserializerException {
  1189.         return (DatiSALType) this.xmlToObj(in, DatiSALType.class);
  1190.     }  
  1191.    
  1192.     /**
  1193.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiSALType}
  1194.      *
  1195.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiSALType}
  1196.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiSALType}
  1197.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1198.      */
  1199.     public DatiSALType readDatiSALTypeFromString(String in) throws DeserializerException {
  1200.         return (DatiSALType) this.xmlToObj(in.getBytes(), DatiSALType.class);
  1201.     }  
  1202.    
  1203.    
  1204.    
  1205.     /*
  1206.      =================================================================================
  1207.      Object: DatiDDTType
  1208.      =================================================================================
  1209.     */
  1210.    
  1211.     /**
  1212.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDDTType}
  1213.      *
  1214.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDDTType}
  1215.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDDTType}
  1216.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1217.      */
  1218.     public DatiDDTType readDatiDDTType(String fileName) throws DeserializerException {
  1219.         return (DatiDDTType) this.xmlToObj(fileName, DatiDDTType.class);
  1220.     }
  1221.    
  1222.     /**
  1223.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDDTType}
  1224.      *
  1225.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDDTType}
  1226.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDDTType}
  1227.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1228.      */
  1229.     public DatiDDTType readDatiDDTType(File file) throws DeserializerException {
  1230.         return (DatiDDTType) this.xmlToObj(file, DatiDDTType.class);
  1231.     }
  1232.    
  1233.     /**
  1234.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDDTType}
  1235.      *
  1236.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDDTType}
  1237.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDDTType}
  1238.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1239.      */
  1240.     public DatiDDTType readDatiDDTType(InputStream in) throws DeserializerException {
  1241.         return (DatiDDTType) this.xmlToObj(in, DatiDDTType.class);
  1242.     }  
  1243.    
  1244.     /**
  1245.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDDTType}
  1246.      *
  1247.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDDTType}
  1248.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDDTType}
  1249.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1250.      */
  1251.     public DatiDDTType readDatiDDTType(byte[] in) throws DeserializerException {
  1252.         return (DatiDDTType) this.xmlToObj(in, DatiDDTType.class);
  1253.     }  
  1254.    
  1255.     /**
  1256.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDDTType}
  1257.      *
  1258.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDDTType}
  1259.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiDDTType}
  1260.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1261.      */
  1262.     public DatiDDTType readDatiDDTTypeFromString(String in) throws DeserializerException {
  1263.         return (DatiDDTType) this.xmlToObj(in.getBytes(), DatiDDTType.class);
  1264.     }  
  1265.    
  1266.    
  1267.    
  1268.     /*
  1269.      =================================================================================
  1270.      Object: DatiTrasportoType
  1271.      =================================================================================
  1272.     */
  1273.    
  1274.     /**
  1275.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasportoType}
  1276.      *
  1277.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasportoType}
  1278.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasportoType}
  1279.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1280.      */
  1281.     public DatiTrasportoType readDatiTrasportoType(String fileName) throws DeserializerException {
  1282.         return (DatiTrasportoType) this.xmlToObj(fileName, DatiTrasportoType.class);
  1283.     }
  1284.    
  1285.     /**
  1286.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasportoType}
  1287.      *
  1288.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasportoType}
  1289.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasportoType}
  1290.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1291.      */
  1292.     public DatiTrasportoType readDatiTrasportoType(File file) throws DeserializerException {
  1293.         return (DatiTrasportoType) this.xmlToObj(file, DatiTrasportoType.class);
  1294.     }
  1295.    
  1296.     /**
  1297.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasportoType}
  1298.      *
  1299.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasportoType}
  1300.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasportoType}
  1301.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1302.      */
  1303.     public DatiTrasportoType readDatiTrasportoType(InputStream in) throws DeserializerException {
  1304.         return (DatiTrasportoType) this.xmlToObj(in, DatiTrasportoType.class);
  1305.     }  
  1306.    
  1307.     /**
  1308.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasportoType}
  1309.      *
  1310.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasportoType}
  1311.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasportoType}
  1312.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1313.      */
  1314.     public DatiTrasportoType readDatiTrasportoType(byte[] in) throws DeserializerException {
  1315.         return (DatiTrasportoType) this.xmlToObj(in, DatiTrasportoType.class);
  1316.     }  
  1317.    
  1318.     /**
  1319.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasportoType}
  1320.      *
  1321.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasportoType}
  1322.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasportoType}
  1323.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1324.      */
  1325.     public DatiTrasportoType readDatiTrasportoTypeFromString(String in) throws DeserializerException {
  1326.         return (DatiTrasportoType) this.xmlToObj(in.getBytes(), DatiTrasportoType.class);
  1327.     }  
  1328.    
  1329.    
  1330.    
  1331.     /*
  1332.      =================================================================================
  1333.      Object: FatturaPrincipaleType
  1334.      =================================================================================
  1335.     */
  1336.    
  1337.     /**
  1338.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaPrincipaleType}
  1339.      *
  1340.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaPrincipaleType}
  1341.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaPrincipaleType}
  1342.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1343.      */
  1344.     public FatturaPrincipaleType readFatturaPrincipaleType(String fileName) throws DeserializerException {
  1345.         return (FatturaPrincipaleType) this.xmlToObj(fileName, FatturaPrincipaleType.class);
  1346.     }
  1347.    
  1348.     /**
  1349.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaPrincipaleType}
  1350.      *
  1351.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaPrincipaleType}
  1352.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaPrincipaleType}
  1353.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1354.      */
  1355.     public FatturaPrincipaleType readFatturaPrincipaleType(File file) throws DeserializerException {
  1356.         return (FatturaPrincipaleType) this.xmlToObj(file, FatturaPrincipaleType.class);
  1357.     }
  1358.    
  1359.     /**
  1360.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaPrincipaleType}
  1361.      *
  1362.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaPrincipaleType}
  1363.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaPrincipaleType}
  1364.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1365.      */
  1366.     public FatturaPrincipaleType readFatturaPrincipaleType(InputStream in) throws DeserializerException {
  1367.         return (FatturaPrincipaleType) this.xmlToObj(in, FatturaPrincipaleType.class);
  1368.     }  
  1369.    
  1370.     /**
  1371.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaPrincipaleType}
  1372.      *
  1373.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaPrincipaleType}
  1374.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaPrincipaleType}
  1375.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1376.      */
  1377.     public FatturaPrincipaleType readFatturaPrincipaleType(byte[] in) throws DeserializerException {
  1378.         return (FatturaPrincipaleType) this.xmlToObj(in, FatturaPrincipaleType.class);
  1379.     }  
  1380.    
  1381.     /**
  1382.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaPrincipaleType}
  1383.      *
  1384.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaPrincipaleType}
  1385.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaPrincipaleType}
  1386.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1387.      */
  1388.     public FatturaPrincipaleType readFatturaPrincipaleTypeFromString(String in) throws DeserializerException {
  1389.         return (FatturaPrincipaleType) this.xmlToObj(in.getBytes(), FatturaPrincipaleType.class);
  1390.     }  
  1391.    
  1392.    
  1393.    
  1394.     /*
  1395.      =================================================================================
  1396.      Object: DatiTrasmissioneType
  1397.      =================================================================================
  1398.     */
  1399.    
  1400.     /**
  1401.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasmissioneType}
  1402.      *
  1403.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasmissioneType}
  1404.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasmissioneType}
  1405.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1406.      */
  1407.     public DatiTrasmissioneType readDatiTrasmissioneType(String fileName) throws DeserializerException {
  1408.         return (DatiTrasmissioneType) this.xmlToObj(fileName, DatiTrasmissioneType.class);
  1409.     }
  1410.    
  1411.     /**
  1412.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasmissioneType}
  1413.      *
  1414.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasmissioneType}
  1415.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasmissioneType}
  1416.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1417.      */
  1418.     public DatiTrasmissioneType readDatiTrasmissioneType(File file) throws DeserializerException {
  1419.         return (DatiTrasmissioneType) this.xmlToObj(file, DatiTrasmissioneType.class);
  1420.     }
  1421.    
  1422.     /**
  1423.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasmissioneType}
  1424.      *
  1425.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasmissioneType}
  1426.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasmissioneType}
  1427.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1428.      */
  1429.     public DatiTrasmissioneType readDatiTrasmissioneType(InputStream in) throws DeserializerException {
  1430.         return (DatiTrasmissioneType) this.xmlToObj(in, DatiTrasmissioneType.class);
  1431.     }  
  1432.    
  1433.     /**
  1434.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasmissioneType}
  1435.      *
  1436.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasmissioneType}
  1437.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasmissioneType}
  1438.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1439.      */
  1440.     public DatiTrasmissioneType readDatiTrasmissioneType(byte[] in) throws DeserializerException {
  1441.         return (DatiTrasmissioneType) this.xmlToObj(in, DatiTrasmissioneType.class);
  1442.     }  
  1443.    
  1444.     /**
  1445.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasmissioneType}
  1446.      *
  1447.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasmissioneType}
  1448.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiTrasmissioneType}
  1449.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1450.      */
  1451.     public DatiTrasmissioneType readDatiTrasmissioneTypeFromString(String in) throws DeserializerException {
  1452.         return (DatiTrasmissioneType) this.xmlToObj(in.getBytes(), DatiTrasmissioneType.class);
  1453.     }  
  1454.    
  1455.    
  1456.    
  1457.     /*
  1458.      =================================================================================
  1459.      Object: FatturaElettronicaHeaderType
  1460.      =================================================================================
  1461.     */
  1462.    
  1463.     /**
  1464.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaHeaderType}
  1465.      *
  1466.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaHeaderType}
  1467.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaHeaderType}
  1468.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1469.      */
  1470.     public FatturaElettronicaHeaderType readFatturaElettronicaHeaderType(String fileName) throws DeserializerException {
  1471.         return (FatturaElettronicaHeaderType) this.xmlToObj(fileName, FatturaElettronicaHeaderType.class);
  1472.     }
  1473.    
  1474.     /**
  1475.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaHeaderType}
  1476.      *
  1477.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaHeaderType}
  1478.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaHeaderType}
  1479.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1480.      */
  1481.     public FatturaElettronicaHeaderType readFatturaElettronicaHeaderType(File file) throws DeserializerException {
  1482.         return (FatturaElettronicaHeaderType) this.xmlToObj(file, FatturaElettronicaHeaderType.class);
  1483.     }
  1484.    
  1485.     /**
  1486.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaHeaderType}
  1487.      *
  1488.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaHeaderType}
  1489.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaHeaderType}
  1490.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1491.      */
  1492.     public FatturaElettronicaHeaderType readFatturaElettronicaHeaderType(InputStream in) throws DeserializerException {
  1493.         return (FatturaElettronicaHeaderType) this.xmlToObj(in, FatturaElettronicaHeaderType.class);
  1494.     }  
  1495.    
  1496.     /**
  1497.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaHeaderType}
  1498.      *
  1499.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaHeaderType}
  1500.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaHeaderType}
  1501.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1502.      */
  1503.     public FatturaElettronicaHeaderType readFatturaElettronicaHeaderType(byte[] in) throws DeserializerException {
  1504.         return (FatturaElettronicaHeaderType) this.xmlToObj(in, FatturaElettronicaHeaderType.class);
  1505.     }  
  1506.    
  1507.     /**
  1508.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaHeaderType}
  1509.      *
  1510.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaHeaderType}
  1511.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaHeaderType}
  1512.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1513.      */
  1514.     public FatturaElettronicaHeaderType readFatturaElettronicaHeaderTypeFromString(String in) throws DeserializerException {
  1515.         return (FatturaElettronicaHeaderType) this.xmlToObj(in.getBytes(), FatturaElettronicaHeaderType.class);
  1516.     }  
  1517.    
  1518.    
  1519.    
  1520.     /*
  1521.      =================================================================================
  1522.      Object: CedentePrestatoreType
  1523.      =================================================================================
  1524.     */
  1525.    
  1526.     /**
  1527.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CedentePrestatoreType}
  1528.      *
  1529.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CedentePrestatoreType}
  1530.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CedentePrestatoreType}
  1531.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1532.      */
  1533.     public CedentePrestatoreType readCedentePrestatoreType(String fileName) throws DeserializerException {
  1534.         return (CedentePrestatoreType) this.xmlToObj(fileName, CedentePrestatoreType.class);
  1535.     }
  1536.    
  1537.     /**
  1538.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CedentePrestatoreType}
  1539.      *
  1540.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CedentePrestatoreType}
  1541.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CedentePrestatoreType}
  1542.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1543.      */
  1544.     public CedentePrestatoreType readCedentePrestatoreType(File file) throws DeserializerException {
  1545.         return (CedentePrestatoreType) this.xmlToObj(file, CedentePrestatoreType.class);
  1546.     }
  1547.    
  1548.     /**
  1549.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CedentePrestatoreType}
  1550.      *
  1551.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CedentePrestatoreType}
  1552.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CedentePrestatoreType}
  1553.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1554.      */
  1555.     public CedentePrestatoreType readCedentePrestatoreType(InputStream in) throws DeserializerException {
  1556.         return (CedentePrestatoreType) this.xmlToObj(in, CedentePrestatoreType.class);
  1557.     }  
  1558.    
  1559.     /**
  1560.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CedentePrestatoreType}
  1561.      *
  1562.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CedentePrestatoreType}
  1563.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CedentePrestatoreType}
  1564.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1565.      */
  1566.     public CedentePrestatoreType readCedentePrestatoreType(byte[] in) throws DeserializerException {
  1567.         return (CedentePrestatoreType) this.xmlToObj(in, CedentePrestatoreType.class);
  1568.     }  
  1569.    
  1570.     /**
  1571.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CedentePrestatoreType}
  1572.      *
  1573.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CedentePrestatoreType}
  1574.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CedentePrestatoreType}
  1575.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1576.      */
  1577.     public CedentePrestatoreType readCedentePrestatoreTypeFromString(String in) throws DeserializerException {
  1578.         return (CedentePrestatoreType) this.xmlToObj(in.getBytes(), CedentePrestatoreType.class);
  1579.     }  
  1580.    
  1581.    
  1582.    
  1583.     /*
  1584.      =================================================================================
  1585.      Object: RappresentanteFiscaleType
  1586.      =================================================================================
  1587.     */
  1588.    
  1589.     /**
  1590.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.RappresentanteFiscaleType}
  1591.      *
  1592.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.RappresentanteFiscaleType}
  1593.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.RappresentanteFiscaleType}
  1594.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1595.      */
  1596.     public RappresentanteFiscaleType readRappresentanteFiscaleType(String fileName) throws DeserializerException {
  1597.         return (RappresentanteFiscaleType) this.xmlToObj(fileName, RappresentanteFiscaleType.class);
  1598.     }
  1599.    
  1600.     /**
  1601.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.RappresentanteFiscaleType}
  1602.      *
  1603.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.RappresentanteFiscaleType}
  1604.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.RappresentanteFiscaleType}
  1605.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1606.      */
  1607.     public RappresentanteFiscaleType readRappresentanteFiscaleType(File file) throws DeserializerException {
  1608.         return (RappresentanteFiscaleType) this.xmlToObj(file, RappresentanteFiscaleType.class);
  1609.     }
  1610.    
  1611.     /**
  1612.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.RappresentanteFiscaleType}
  1613.      *
  1614.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.RappresentanteFiscaleType}
  1615.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.RappresentanteFiscaleType}
  1616.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1617.      */
  1618.     public RappresentanteFiscaleType readRappresentanteFiscaleType(InputStream in) throws DeserializerException {
  1619.         return (RappresentanteFiscaleType) this.xmlToObj(in, RappresentanteFiscaleType.class);
  1620.     }  
  1621.    
  1622.     /**
  1623.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.RappresentanteFiscaleType}
  1624.      *
  1625.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.RappresentanteFiscaleType}
  1626.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.RappresentanteFiscaleType}
  1627.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1628.      */
  1629.     public RappresentanteFiscaleType readRappresentanteFiscaleType(byte[] in) throws DeserializerException {
  1630.         return (RappresentanteFiscaleType) this.xmlToObj(in, RappresentanteFiscaleType.class);
  1631.     }  
  1632.    
  1633.     /**
  1634.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.RappresentanteFiscaleType}
  1635.      *
  1636.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.RappresentanteFiscaleType}
  1637.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.RappresentanteFiscaleType}
  1638.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1639.      */
  1640.     public RappresentanteFiscaleType readRappresentanteFiscaleTypeFromString(String in) throws DeserializerException {
  1641.         return (RappresentanteFiscaleType) this.xmlToObj(in.getBytes(), RappresentanteFiscaleType.class);
  1642.     }  
  1643.    
  1644.    
  1645.    
  1646.     /*
  1647.      =================================================================================
  1648.      Object: CessionarioCommittenteType
  1649.      =================================================================================
  1650.     */
  1651.    
  1652.     /**
  1653.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CessionarioCommittenteType}
  1654.      *
  1655.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CessionarioCommittenteType}
  1656.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CessionarioCommittenteType}
  1657.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1658.      */
  1659.     public CessionarioCommittenteType readCessionarioCommittenteType(String fileName) throws DeserializerException {
  1660.         return (CessionarioCommittenteType) this.xmlToObj(fileName, CessionarioCommittenteType.class);
  1661.     }
  1662.    
  1663.     /**
  1664.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CessionarioCommittenteType}
  1665.      *
  1666.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CessionarioCommittenteType}
  1667.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CessionarioCommittenteType}
  1668.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1669.      */
  1670.     public CessionarioCommittenteType readCessionarioCommittenteType(File file) throws DeserializerException {
  1671.         return (CessionarioCommittenteType) this.xmlToObj(file, CessionarioCommittenteType.class);
  1672.     }
  1673.    
  1674.     /**
  1675.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CessionarioCommittenteType}
  1676.      *
  1677.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CessionarioCommittenteType}
  1678.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CessionarioCommittenteType}
  1679.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1680.      */
  1681.     public CessionarioCommittenteType readCessionarioCommittenteType(InputStream in) throws DeserializerException {
  1682.         return (CessionarioCommittenteType) this.xmlToObj(in, CessionarioCommittenteType.class);
  1683.     }  
  1684.    
  1685.     /**
  1686.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CessionarioCommittenteType}
  1687.      *
  1688.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CessionarioCommittenteType}
  1689.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CessionarioCommittenteType}
  1690.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1691.      */
  1692.     public CessionarioCommittenteType readCessionarioCommittenteType(byte[] in) throws DeserializerException {
  1693.         return (CessionarioCommittenteType) this.xmlToObj(in, CessionarioCommittenteType.class);
  1694.     }  
  1695.    
  1696.     /**
  1697.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CessionarioCommittenteType}
  1698.      *
  1699.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CessionarioCommittenteType}
  1700.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.CessionarioCommittenteType}
  1701.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1702.      */
  1703.     public CessionarioCommittenteType readCessionarioCommittenteTypeFromString(String in) throws DeserializerException {
  1704.         return (CessionarioCommittenteType) this.xmlToObj(in.getBytes(), CessionarioCommittenteType.class);
  1705.     }  
  1706.    
  1707.    
  1708.    
  1709.     /*
  1710.      =================================================================================
  1711.      Object: DatiAnagraficiCessionarioType
  1712.      =================================================================================
  1713.     */
  1714.    
  1715.     /**
  1716.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCessionarioType}
  1717.      *
  1718.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCessionarioType}
  1719.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCessionarioType}
  1720.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1721.      */
  1722.     public DatiAnagraficiCessionarioType readDatiAnagraficiCessionarioType(String fileName) throws DeserializerException {
  1723.         return (DatiAnagraficiCessionarioType) this.xmlToObj(fileName, DatiAnagraficiCessionarioType.class);
  1724.     }
  1725.    
  1726.     /**
  1727.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCessionarioType}
  1728.      *
  1729.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCessionarioType}
  1730.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCessionarioType}
  1731.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1732.      */
  1733.     public DatiAnagraficiCessionarioType readDatiAnagraficiCessionarioType(File file) throws DeserializerException {
  1734.         return (DatiAnagraficiCessionarioType) this.xmlToObj(file, DatiAnagraficiCessionarioType.class);
  1735.     }
  1736.    
  1737.     /**
  1738.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCessionarioType}
  1739.      *
  1740.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCessionarioType}
  1741.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCessionarioType}
  1742.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1743.      */
  1744.     public DatiAnagraficiCessionarioType readDatiAnagraficiCessionarioType(InputStream in) throws DeserializerException {
  1745.         return (DatiAnagraficiCessionarioType) this.xmlToObj(in, DatiAnagraficiCessionarioType.class);
  1746.     }  
  1747.    
  1748.     /**
  1749.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCessionarioType}
  1750.      *
  1751.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCessionarioType}
  1752.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCessionarioType}
  1753.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1754.      */
  1755.     public DatiAnagraficiCessionarioType readDatiAnagraficiCessionarioType(byte[] in) throws DeserializerException {
  1756.         return (DatiAnagraficiCessionarioType) this.xmlToObj(in, DatiAnagraficiCessionarioType.class);
  1757.     }  
  1758.    
  1759.     /**
  1760.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCessionarioType}
  1761.      *
  1762.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCessionarioType}
  1763.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiCessionarioType}
  1764.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1765.      */
  1766.     public DatiAnagraficiCessionarioType readDatiAnagraficiCessionarioTypeFromString(String in) throws DeserializerException {
  1767.         return (DatiAnagraficiCessionarioType) this.xmlToObj(in.getBytes(), DatiAnagraficiCessionarioType.class);
  1768.     }  
  1769.    
  1770.    
  1771.    
  1772.     /*
  1773.      =================================================================================
  1774.      Object: IndirizzoType
  1775.      =================================================================================
  1776.     */
  1777.    
  1778.     /**
  1779.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IndirizzoType}
  1780.      *
  1781.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IndirizzoType}
  1782.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IndirizzoType}
  1783.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1784.      */
  1785.     public IndirizzoType readIndirizzoType(String fileName) throws DeserializerException {
  1786.         return (IndirizzoType) this.xmlToObj(fileName, IndirizzoType.class);
  1787.     }
  1788.    
  1789.     /**
  1790.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IndirizzoType}
  1791.      *
  1792.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IndirizzoType}
  1793.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IndirizzoType}
  1794.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1795.      */
  1796.     public IndirizzoType readIndirizzoType(File file) throws DeserializerException {
  1797.         return (IndirizzoType) this.xmlToObj(file, IndirizzoType.class);
  1798.     }
  1799.    
  1800.     /**
  1801.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IndirizzoType}
  1802.      *
  1803.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IndirizzoType}
  1804.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IndirizzoType}
  1805.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1806.      */
  1807.     public IndirizzoType readIndirizzoType(InputStream in) throws DeserializerException {
  1808.         return (IndirizzoType) this.xmlToObj(in, IndirizzoType.class);
  1809.     }  
  1810.    
  1811.     /**
  1812.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IndirizzoType}
  1813.      *
  1814.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IndirizzoType}
  1815.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IndirizzoType}
  1816.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1817.      */
  1818.     public IndirizzoType readIndirizzoType(byte[] in) throws DeserializerException {
  1819.         return (IndirizzoType) this.xmlToObj(in, IndirizzoType.class);
  1820.     }  
  1821.    
  1822.     /**
  1823.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IndirizzoType}
  1824.      *
  1825.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IndirizzoType}
  1826.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IndirizzoType}
  1827.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1828.      */
  1829.     public IndirizzoType readIndirizzoTypeFromString(String in) throws DeserializerException {
  1830.         return (IndirizzoType) this.xmlToObj(in.getBytes(), IndirizzoType.class);
  1831.     }  
  1832.    
  1833.    
  1834.    
  1835.     /*
  1836.      =================================================================================
  1837.      Object: IscrizioneREAType
  1838.      =================================================================================
  1839.     */
  1840.    
  1841.     /**
  1842.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IscrizioneREAType}
  1843.      *
  1844.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IscrizioneREAType}
  1845.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IscrizioneREAType}
  1846.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1847.      */
  1848.     public IscrizioneREAType readIscrizioneREAType(String fileName) throws DeserializerException {
  1849.         return (IscrizioneREAType) this.xmlToObj(fileName, IscrizioneREAType.class);
  1850.     }
  1851.    
  1852.     /**
  1853.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IscrizioneREAType}
  1854.      *
  1855.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IscrizioneREAType}
  1856.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IscrizioneREAType}
  1857.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1858.      */
  1859.     public IscrizioneREAType readIscrizioneREAType(File file) throws DeserializerException {
  1860.         return (IscrizioneREAType) this.xmlToObj(file, IscrizioneREAType.class);
  1861.     }
  1862.    
  1863.     /**
  1864.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IscrizioneREAType}
  1865.      *
  1866.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IscrizioneREAType}
  1867.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IscrizioneREAType}
  1868.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1869.      */
  1870.     public IscrizioneREAType readIscrizioneREAType(InputStream in) throws DeserializerException {
  1871.         return (IscrizioneREAType) this.xmlToObj(in, IscrizioneREAType.class);
  1872.     }  
  1873.    
  1874.     /**
  1875.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IscrizioneREAType}
  1876.      *
  1877.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IscrizioneREAType}
  1878.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IscrizioneREAType}
  1879.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1880.      */
  1881.     public IscrizioneREAType readIscrizioneREAType(byte[] in) throws DeserializerException {
  1882.         return (IscrizioneREAType) this.xmlToObj(in, IscrizioneREAType.class);
  1883.     }  
  1884.    
  1885.     /**
  1886.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IscrizioneREAType}
  1887.      *
  1888.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IscrizioneREAType}
  1889.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.IscrizioneREAType}
  1890.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1891.      */
  1892.     public IscrizioneREAType readIscrizioneREATypeFromString(String in) throws DeserializerException {
  1893.         return (IscrizioneREAType) this.xmlToObj(in.getBytes(), IscrizioneREAType.class);
  1894.     }  
  1895.    
  1896.    
  1897.    
  1898.     /*
  1899.      =================================================================================
  1900.      Object: ContattiType
  1901.      =================================================================================
  1902.     */
  1903.    
  1904.     /**
  1905.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiType}
  1906.      *
  1907.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiType}
  1908.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiType}
  1909.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1910.      */
  1911.     public ContattiType readContattiType(String fileName) throws DeserializerException {
  1912.         return (ContattiType) this.xmlToObj(fileName, ContattiType.class);
  1913.     }
  1914.    
  1915.     /**
  1916.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiType}
  1917.      *
  1918.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiType}
  1919.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiType}
  1920.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1921.      */
  1922.     public ContattiType readContattiType(File file) throws DeserializerException {
  1923.         return (ContattiType) this.xmlToObj(file, ContattiType.class);
  1924.     }
  1925.    
  1926.     /**
  1927.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiType}
  1928.      *
  1929.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiType}
  1930.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiType}
  1931.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1932.      */
  1933.     public ContattiType readContattiType(InputStream in) throws DeserializerException {
  1934.         return (ContattiType) this.xmlToObj(in, ContattiType.class);
  1935.     }  
  1936.    
  1937.     /**
  1938.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiType}
  1939.      *
  1940.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiType}
  1941.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiType}
  1942.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1943.      */
  1944.     public ContattiType readContattiType(byte[] in) throws DeserializerException {
  1945.         return (ContattiType) this.xmlToObj(in, ContattiType.class);
  1946.     }  
  1947.    
  1948.     /**
  1949.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiType}
  1950.      *
  1951.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiType}
  1952.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiType}
  1953.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1954.      */
  1955.     public ContattiType readContattiTypeFromString(String in) throws DeserializerException {
  1956.         return (ContattiType) this.xmlToObj(in.getBytes(), ContattiType.class);
  1957.     }  
  1958.    
  1959.    
  1960.    
  1961.     /*
  1962.      =================================================================================
  1963.      Object: DatiAnagraficiVettoreType
  1964.      =================================================================================
  1965.     */
  1966.    
  1967.     /**
  1968.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiVettoreType}
  1969.      *
  1970.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiVettoreType}
  1971.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiVettoreType}
  1972.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1973.      */
  1974.     public DatiAnagraficiVettoreType readDatiAnagraficiVettoreType(String fileName) throws DeserializerException {
  1975.         return (DatiAnagraficiVettoreType) this.xmlToObj(fileName, DatiAnagraficiVettoreType.class);
  1976.     }
  1977.    
  1978.     /**
  1979.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiVettoreType}
  1980.      *
  1981.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiVettoreType}
  1982.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiVettoreType}
  1983.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1984.      */
  1985.     public DatiAnagraficiVettoreType readDatiAnagraficiVettoreType(File file) throws DeserializerException {
  1986.         return (DatiAnagraficiVettoreType) this.xmlToObj(file, DatiAnagraficiVettoreType.class);
  1987.     }
  1988.    
  1989.     /**
  1990.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiVettoreType}
  1991.      *
  1992.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiVettoreType}
  1993.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiVettoreType}
  1994.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1995.      */
  1996.     public DatiAnagraficiVettoreType readDatiAnagraficiVettoreType(InputStream in) throws DeserializerException {
  1997.         return (DatiAnagraficiVettoreType) this.xmlToObj(in, DatiAnagraficiVettoreType.class);
  1998.     }  
  1999.    
  2000.     /**
  2001.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiVettoreType}
  2002.      *
  2003.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiVettoreType}
  2004.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiVettoreType}
  2005.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2006.      */
  2007.     public DatiAnagraficiVettoreType readDatiAnagraficiVettoreType(byte[] in) throws DeserializerException {
  2008.         return (DatiAnagraficiVettoreType) this.xmlToObj(in, DatiAnagraficiVettoreType.class);
  2009.     }  
  2010.    
  2011.     /**
  2012.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiVettoreType}
  2013.      *
  2014.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiVettoreType}
  2015.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiAnagraficiVettoreType}
  2016.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2017.      */
  2018.     public DatiAnagraficiVettoreType readDatiAnagraficiVettoreTypeFromString(String in) throws DeserializerException {
  2019.         return (DatiAnagraficiVettoreType) this.xmlToObj(in.getBytes(), DatiAnagraficiVettoreType.class);
  2020.     }  
  2021.    
  2022.    
  2023.    
  2024.     /*
  2025.      =================================================================================
  2026.      Object: DatiVeicoliType
  2027.      =================================================================================
  2028.     */
  2029.    
  2030.     /**
  2031.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiVeicoliType}
  2032.      *
  2033.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiVeicoliType}
  2034.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiVeicoliType}
  2035.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2036.      */
  2037.     public DatiVeicoliType readDatiVeicoliType(String fileName) throws DeserializerException {
  2038.         return (DatiVeicoliType) this.xmlToObj(fileName, DatiVeicoliType.class);
  2039.     }
  2040.    
  2041.     /**
  2042.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiVeicoliType}
  2043.      *
  2044.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiVeicoliType}
  2045.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiVeicoliType}
  2046.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2047.      */
  2048.     public DatiVeicoliType readDatiVeicoliType(File file) throws DeserializerException {
  2049.         return (DatiVeicoliType) this.xmlToObj(file, DatiVeicoliType.class);
  2050.     }
  2051.    
  2052.     /**
  2053.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiVeicoliType}
  2054.      *
  2055.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiVeicoliType}
  2056.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiVeicoliType}
  2057.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2058.      */
  2059.     public DatiVeicoliType readDatiVeicoliType(InputStream in) throws DeserializerException {
  2060.         return (DatiVeicoliType) this.xmlToObj(in, DatiVeicoliType.class);
  2061.     }  
  2062.    
  2063.     /**
  2064.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiVeicoliType}
  2065.      *
  2066.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiVeicoliType}
  2067.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiVeicoliType}
  2068.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2069.      */
  2070.     public DatiVeicoliType readDatiVeicoliType(byte[] in) throws DeserializerException {
  2071.         return (DatiVeicoliType) this.xmlToObj(in, DatiVeicoliType.class);
  2072.     }  
  2073.    
  2074.     /**
  2075.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiVeicoliType}
  2076.      *
  2077.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiVeicoliType}
  2078.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiVeicoliType}
  2079.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2080.      */
  2081.     public DatiVeicoliType readDatiVeicoliTypeFromString(String in) throws DeserializerException {
  2082.         return (DatiVeicoliType) this.xmlToObj(in.getBytes(), DatiVeicoliType.class);
  2083.     }  
  2084.    
  2085.    
  2086.    
  2087.     /*
  2088.      =================================================================================
  2089.      Object: FatturaElettronicaType
  2090.      =================================================================================
  2091.     */
  2092.    
  2093.     /**
  2094.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaType}
  2095.      *
  2096.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaType}
  2097.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaType}
  2098.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2099.      */
  2100.     public FatturaElettronicaType readFatturaElettronicaType(String fileName) throws DeserializerException {
  2101.         return (FatturaElettronicaType) this.xmlToObj(fileName, FatturaElettronicaType.class);
  2102.     }
  2103.    
  2104.     /**
  2105.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaType}
  2106.      *
  2107.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaType}
  2108.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaType}
  2109.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2110.      */
  2111.     public FatturaElettronicaType readFatturaElettronicaType(File file) throws DeserializerException {
  2112.         return (FatturaElettronicaType) this.xmlToObj(file, FatturaElettronicaType.class);
  2113.     }
  2114.    
  2115.     /**
  2116.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaType}
  2117.      *
  2118.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaType}
  2119.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaType}
  2120.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2121.      */
  2122.     public FatturaElettronicaType readFatturaElettronicaType(InputStream in) throws DeserializerException {
  2123.         return (FatturaElettronicaType) this.xmlToObj(in, FatturaElettronicaType.class);
  2124.     }  
  2125.    
  2126.     /**
  2127.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaType}
  2128.      *
  2129.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaType}
  2130.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaType}
  2131.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2132.      */
  2133.     public FatturaElettronicaType readFatturaElettronicaType(byte[] in) throws DeserializerException {
  2134.         return (FatturaElettronicaType) this.xmlToObj(in, FatturaElettronicaType.class);
  2135.     }  
  2136.    
  2137.     /**
  2138.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaType}
  2139.      *
  2140.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaType}
  2141.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaType}
  2142.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2143.      */
  2144.     public FatturaElettronicaType readFatturaElettronicaTypeFromString(String in) throws DeserializerException {
  2145.         return (FatturaElettronicaType) this.xmlToObj(in.getBytes(), FatturaElettronicaType.class);
  2146.     }  
  2147.    
  2148.    
  2149.    
  2150.     /*
  2151.      =================================================================================
  2152.      Object: FatturaElettronicaBodyType
  2153.      =================================================================================
  2154.     */
  2155.    
  2156.     /**
  2157.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaBodyType}
  2158.      *
  2159.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaBodyType}
  2160.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaBodyType}
  2161.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2162.      */
  2163.     public FatturaElettronicaBodyType readFatturaElettronicaBodyType(String fileName) throws DeserializerException {
  2164.         return (FatturaElettronicaBodyType) this.xmlToObj(fileName, FatturaElettronicaBodyType.class);
  2165.     }
  2166.    
  2167.     /**
  2168.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaBodyType}
  2169.      *
  2170.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaBodyType}
  2171.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaBodyType}
  2172.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2173.      */
  2174.     public FatturaElettronicaBodyType readFatturaElettronicaBodyType(File file) throws DeserializerException {
  2175.         return (FatturaElettronicaBodyType) this.xmlToObj(file, FatturaElettronicaBodyType.class);
  2176.     }
  2177.    
  2178.     /**
  2179.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaBodyType}
  2180.      *
  2181.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaBodyType}
  2182.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaBodyType}
  2183.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2184.      */
  2185.     public FatturaElettronicaBodyType readFatturaElettronicaBodyType(InputStream in) throws DeserializerException {
  2186.         return (FatturaElettronicaBodyType) this.xmlToObj(in, FatturaElettronicaBodyType.class);
  2187.     }  
  2188.    
  2189.     /**
  2190.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaBodyType}
  2191.      *
  2192.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaBodyType}
  2193.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaBodyType}
  2194.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2195.      */
  2196.     public FatturaElettronicaBodyType readFatturaElettronicaBodyType(byte[] in) throws DeserializerException {
  2197.         return (FatturaElettronicaBodyType) this.xmlToObj(in, FatturaElettronicaBodyType.class);
  2198.     }  
  2199.    
  2200.     /**
  2201.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaBodyType}
  2202.      *
  2203.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaBodyType}
  2204.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.FatturaElettronicaBodyType}
  2205.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2206.      */
  2207.     public FatturaElettronicaBodyType readFatturaElettronicaBodyTypeFromString(String in) throws DeserializerException {
  2208.         return (FatturaElettronicaBodyType) this.xmlToObj(in.getBytes(), FatturaElettronicaBodyType.class);
  2209.     }  
  2210.    
  2211.    
  2212.    
  2213.     /*
  2214.      =================================================================================
  2215.      Object: DatiPagamentoType
  2216.      =================================================================================
  2217.     */
  2218.    
  2219.     /**
  2220.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiPagamentoType}
  2221.      *
  2222.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiPagamentoType}
  2223.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiPagamentoType}
  2224.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2225.      */
  2226.     public DatiPagamentoType readDatiPagamentoType(String fileName) throws DeserializerException {
  2227.         return (DatiPagamentoType) this.xmlToObj(fileName, DatiPagamentoType.class);
  2228.     }
  2229.    
  2230.     /**
  2231.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiPagamentoType}
  2232.      *
  2233.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiPagamentoType}
  2234.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiPagamentoType}
  2235.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2236.      */
  2237.     public DatiPagamentoType readDatiPagamentoType(File file) throws DeserializerException {
  2238.         return (DatiPagamentoType) this.xmlToObj(file, DatiPagamentoType.class);
  2239.     }
  2240.    
  2241.     /**
  2242.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiPagamentoType}
  2243.      *
  2244.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiPagamentoType}
  2245.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiPagamentoType}
  2246.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2247.      */
  2248.     public DatiPagamentoType readDatiPagamentoType(InputStream in) throws DeserializerException {
  2249.         return (DatiPagamentoType) this.xmlToObj(in, DatiPagamentoType.class);
  2250.     }  
  2251.    
  2252.     /**
  2253.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiPagamentoType}
  2254.      *
  2255.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiPagamentoType}
  2256.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiPagamentoType}
  2257.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2258.      */
  2259.     public DatiPagamentoType readDatiPagamentoType(byte[] in) throws DeserializerException {
  2260.         return (DatiPagamentoType) this.xmlToObj(in, DatiPagamentoType.class);
  2261.     }  
  2262.    
  2263.     /**
  2264.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiPagamentoType}
  2265.      *
  2266.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiPagamentoType}
  2267.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiPagamentoType}
  2268.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2269.      */
  2270.     public DatiPagamentoType readDatiPagamentoTypeFromString(String in) throws DeserializerException {
  2271.         return (DatiPagamentoType) this.xmlToObj(in.getBytes(), DatiPagamentoType.class);
  2272.     }  
  2273.    
  2274.    
  2275.    
  2276.     /*
  2277.      =================================================================================
  2278.      Object: AllegatiType
  2279.      =================================================================================
  2280.     */
  2281.    
  2282.     /**
  2283.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AllegatiType}
  2284.      *
  2285.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AllegatiType}
  2286.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AllegatiType}
  2287.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2288.      */
  2289.     public AllegatiType readAllegatiType(String fileName) throws DeserializerException {
  2290.         return (AllegatiType) this.xmlToObj(fileName, AllegatiType.class);
  2291.     }
  2292.    
  2293.     /**
  2294.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AllegatiType}
  2295.      *
  2296.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AllegatiType}
  2297.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AllegatiType}
  2298.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2299.      */
  2300.     public AllegatiType readAllegatiType(File file) throws DeserializerException {
  2301.         return (AllegatiType) this.xmlToObj(file, AllegatiType.class);
  2302.     }
  2303.    
  2304.     /**
  2305.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AllegatiType}
  2306.      *
  2307.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AllegatiType}
  2308.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AllegatiType}
  2309.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2310.      */
  2311.     public AllegatiType readAllegatiType(InputStream in) throws DeserializerException {
  2312.         return (AllegatiType) this.xmlToObj(in, AllegatiType.class);
  2313.     }  
  2314.    
  2315.     /**
  2316.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AllegatiType}
  2317.      *
  2318.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AllegatiType}
  2319.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AllegatiType}
  2320.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2321.      */
  2322.     public AllegatiType readAllegatiType(byte[] in) throws DeserializerException {
  2323.         return (AllegatiType) this.xmlToObj(in, AllegatiType.class);
  2324.     }  
  2325.    
  2326.     /**
  2327.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AllegatiType}
  2328.      *
  2329.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AllegatiType}
  2330.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.AllegatiType}
  2331.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2332.      */
  2333.     public AllegatiType readAllegatiTypeFromString(String in) throws DeserializerException {
  2334.         return (AllegatiType) this.xmlToObj(in.getBytes(), AllegatiType.class);
  2335.     }  
  2336.    
  2337.    
  2338.    
  2339.     /*
  2340.      =================================================================================
  2341.      Object: DatiCassaPrevidenzialeType
  2342.      =================================================================================
  2343.     */
  2344.    
  2345.     /**
  2346.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiCassaPrevidenzialeType}
  2347.      *
  2348.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiCassaPrevidenzialeType}
  2349.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiCassaPrevidenzialeType}
  2350.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2351.      */
  2352.     public DatiCassaPrevidenzialeType readDatiCassaPrevidenzialeType(String fileName) throws DeserializerException {
  2353.         return (DatiCassaPrevidenzialeType) this.xmlToObj(fileName, DatiCassaPrevidenzialeType.class);
  2354.     }
  2355.    
  2356.     /**
  2357.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiCassaPrevidenzialeType}
  2358.      *
  2359.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiCassaPrevidenzialeType}
  2360.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiCassaPrevidenzialeType}
  2361.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2362.      */
  2363.     public DatiCassaPrevidenzialeType readDatiCassaPrevidenzialeType(File file) throws DeserializerException {
  2364.         return (DatiCassaPrevidenzialeType) this.xmlToObj(file, DatiCassaPrevidenzialeType.class);
  2365.     }
  2366.    
  2367.     /**
  2368.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiCassaPrevidenzialeType}
  2369.      *
  2370.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiCassaPrevidenzialeType}
  2371.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiCassaPrevidenzialeType}
  2372.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2373.      */
  2374.     public DatiCassaPrevidenzialeType readDatiCassaPrevidenzialeType(InputStream in) throws DeserializerException {
  2375.         return (DatiCassaPrevidenzialeType) this.xmlToObj(in, DatiCassaPrevidenzialeType.class);
  2376.     }  
  2377.    
  2378.     /**
  2379.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiCassaPrevidenzialeType}
  2380.      *
  2381.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiCassaPrevidenzialeType}
  2382.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiCassaPrevidenzialeType}
  2383.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2384.      */
  2385.     public DatiCassaPrevidenzialeType readDatiCassaPrevidenzialeType(byte[] in) throws DeserializerException {
  2386.         return (DatiCassaPrevidenzialeType) this.xmlToObj(in, DatiCassaPrevidenzialeType.class);
  2387.     }  
  2388.    
  2389.     /**
  2390.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiCassaPrevidenzialeType}
  2391.      *
  2392.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiCassaPrevidenzialeType}
  2393.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiCassaPrevidenzialeType}
  2394.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2395.      */
  2396.     public DatiCassaPrevidenzialeType readDatiCassaPrevidenzialeTypeFromString(String in) throws DeserializerException {
  2397.         return (DatiCassaPrevidenzialeType) this.xmlToObj(in.getBytes(), DatiCassaPrevidenzialeType.class);
  2398.     }  
  2399.    
  2400.    
  2401.    
  2402.     /*
  2403.      =================================================================================
  2404.      Object: DatiBolloType
  2405.      =================================================================================
  2406.     */
  2407.    
  2408.     /**
  2409.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBolloType}
  2410.      *
  2411.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBolloType}
  2412.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBolloType}
  2413.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2414.      */
  2415.     public DatiBolloType readDatiBolloType(String fileName) throws DeserializerException {
  2416.         return (DatiBolloType) this.xmlToObj(fileName, DatiBolloType.class);
  2417.     }
  2418.    
  2419.     /**
  2420.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBolloType}
  2421.      *
  2422.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBolloType}
  2423.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBolloType}
  2424.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2425.      */
  2426.     public DatiBolloType readDatiBolloType(File file) throws DeserializerException {
  2427.         return (DatiBolloType) this.xmlToObj(file, DatiBolloType.class);
  2428.     }
  2429.    
  2430.     /**
  2431.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBolloType}
  2432.      *
  2433.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBolloType}
  2434.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBolloType}
  2435.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2436.      */
  2437.     public DatiBolloType readDatiBolloType(InputStream in) throws DeserializerException {
  2438.         return (DatiBolloType) this.xmlToObj(in, DatiBolloType.class);
  2439.     }  
  2440.    
  2441.     /**
  2442.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBolloType}
  2443.      *
  2444.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBolloType}
  2445.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBolloType}
  2446.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2447.      */
  2448.     public DatiBolloType readDatiBolloType(byte[] in) throws DeserializerException {
  2449.         return (DatiBolloType) this.xmlToObj(in, DatiBolloType.class);
  2450.     }  
  2451.    
  2452.     /**
  2453.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBolloType}
  2454.      *
  2455.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBolloType}
  2456.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.DatiBolloType}
  2457.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2458.      */
  2459.     public DatiBolloType readDatiBolloTypeFromString(String in) throws DeserializerException {
  2460.         return (DatiBolloType) this.xmlToObj(in.getBytes(), DatiBolloType.class);
  2461.     }  
  2462.    
  2463.    
  2464.    
  2465.     /*
  2466.      =================================================================================
  2467.      Object: ContattiTrasmittenteType
  2468.      =================================================================================
  2469.     */
  2470.    
  2471.     /**
  2472.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiTrasmittenteType}
  2473.      *
  2474.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiTrasmittenteType}
  2475.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiTrasmittenteType}
  2476.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2477.      */
  2478.     public ContattiTrasmittenteType readContattiTrasmittenteType(String fileName) throws DeserializerException {
  2479.         return (ContattiTrasmittenteType) this.xmlToObj(fileName, ContattiTrasmittenteType.class);
  2480.     }
  2481.    
  2482.     /**
  2483.      * Transform the xml in <var>file</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiTrasmittenteType}
  2484.      *
  2485.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiTrasmittenteType}
  2486.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiTrasmittenteType}
  2487.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2488.      */
  2489.     public ContattiTrasmittenteType readContattiTrasmittenteType(File file) throws DeserializerException {
  2490.         return (ContattiTrasmittenteType) this.xmlToObj(file, ContattiTrasmittenteType.class);
  2491.     }
  2492.    
  2493.     /**
  2494.      * Transform the input stream <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiTrasmittenteType}
  2495.      *
  2496.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiTrasmittenteType}
  2497.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiTrasmittenteType}
  2498.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2499.      */
  2500.     public ContattiTrasmittenteType readContattiTrasmittenteType(InputStream in) throws DeserializerException {
  2501.         return (ContattiTrasmittenteType) this.xmlToObj(in, ContattiTrasmittenteType.class);
  2502.     }  
  2503.    
  2504.     /**
  2505.      * Transform the byte array <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiTrasmittenteType}
  2506.      *
  2507.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiTrasmittenteType}
  2508.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiTrasmittenteType}
  2509.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2510.      */
  2511.     public ContattiTrasmittenteType readContattiTrasmittenteType(byte[] in) throws DeserializerException {
  2512.         return (ContattiTrasmittenteType) this.xmlToObj(in, ContattiTrasmittenteType.class);
  2513.     }  
  2514.    
  2515.     /**
  2516.      * Transform the String <var>in</var> in the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiTrasmittenteType}
  2517.      *
  2518.      * @param in String to use for the reconstruction of the object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiTrasmittenteType}
  2519.      * @return Object type {@link it.gov.fatturapa.sdi.fatturapa.v1_0.ContattiTrasmittenteType}
  2520.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2521.      */
  2522.     public ContattiTrasmittenteType readContattiTrasmittenteTypeFromString(String in) throws DeserializerException {
  2523.         return (ContattiTrasmittenteType) this.xmlToObj(in.getBytes(), ContattiTrasmittenteType.class);
  2524.     }  
  2525.    
  2526.    
  2527.    

  2528. }