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

io.legaldocml.akn.element.Preservation 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.PRESERVATION;

/**
 * The element preservation is the metadata property containing an arbitrary list of elements detailing the preservation
 * actions taken for the document is the respective level of the FRBR hierarchy.
 *
 * 
 * 	 
 * 
 *
 * @author Jacques Militello
 */
public final class Preservation extends AnyOtherType {

    /**
     * Memory address.
     */
    private static final long ADDRESS_PRESERVATION = Buffers.address(PRESERVATION);

    /**
     * {@inheritDoc}
     */
    @Override
    public void write(XmlWriter writer) throws IOException {
        writer.writeStart(ADDRESS_PRESERVATION, 12);
        super.write(writer);
        writer.writeEnd(ADDRESS_PRESERVATION, 12);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public String name() {
        return PRESERVATION;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void accept(AknVisitor visitor) {
        if (visitor.visitEnter(this)) {
            super.accept(visitor);
            visitor.visitLeave(this);
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy