All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.legaldocml.akn.element.FRBRcountry Maven / Gradle / Ivy

The newest version!
package io.legaldocml.akn.element;

import io.legaldocml.akn.visitor.AknVisitor;
import io.legaldocml.io.XmlWriter;
import io.legaldocml.io.impl.Buffers;

import java.io.IOException;

import static io.legaldocml.akn.AknElements.FRBR_COUNTRY;

/**
 * The element FRBRcountry is the metadata property containing a ISO 3166-1 Alpha-2 code for the country or jurisdiction
 * to be used in the work-level IRI of this document
 *
 * 
 * 	 
 * 
* * @author Jacques Militello */ public final class FRBRcountry extends ValueType { /** * Memory address. */ private static final long ADDRESS_FRBR_COUNTRY = Buffers.address(FRBR_COUNTRY); /** * {@inheritDoc} */ @Override public void write(XmlWriter writer) throws IOException { writer.writeStart(ADDRESS_FRBR_COUNTRY, 11); super.write(writer); writer.writeEnd(ADDRESS_FRBR_COUNTRY, 11); } /** * {@inheritDoc} */ @Override public String name() { return FRBR_COUNTRY; } /** * {@inheritDoc} */ @Override public void accept(AknVisitor visitor) { visitor.visit(this); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy