public ContactImpl()

in sdmx30-infomodel/src/main/java/com/epam/jsdmx/infomodel/sdmx30/ContactImpl.java [26:40]


    public ContactImpl(Contact from) {
        Objects.requireNonNull(from);
        this.email = from.getEmail();
        this.fax = from.getFax();
        this.name = from.getName();
        this.organizationUnit = from.getOrganizationUnit();
        if (from.getResponsibility() != null) {
            this.responsibility = new InternationalString(from.getResponsibility());
        }
        this.telephone = from.getTelephone();
        if (from.getUri() != null) {
            this.uri = new URI(from.getUri().toString());
        }
        this.X400 = from.getX400();
    }