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

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

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

import com.google.common.collect.ImmutableMap;
import io.legaldocml.akn.AknObject;
import io.legaldocml.akn.attribute.Source;
import io.legaldocml.akn.type.AgentRef;
import io.legaldocml.akn.util.AknList;
import io.legaldocml.akn.util.XmlReaderHelper;
import io.legaldocml.io.AttributeGetterSetter;
import io.legaldocml.io.XmlReader;
import io.legaldocml.io.XmlWriter;
import io.legaldocml.io.impl.Buffers;

import java.io.IOException;
import java.util.function.Supplier;

import static io.legaldocml.akn.AknAttributes.SOURCE;
import static io.legaldocml.akn.AknElements.ALTERNATIVE_REFERENCE;
import static io.legaldocml.akn.AknElements.IMPLICIT_REFERENCE;
import static io.legaldocml.akn.AknElements.OTHER_REFERENCES;
import static io.legaldocml.akn.element.Attributes.attributeGetterSetter4AgentRef;
import static io.legaldocml.akn.util.XmlWriterHelper.writeSource;
import static io.legaldocml.unsafe.UnsafeHelper.getFieldOffset;

/**
 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
* * @author Jacques Militello */ public final class OtherReferences implements Source { /** * Memory address. */ private static final long ADDRESS_OTHER_REFERENCES = Buffers.address(OTHER_REFERENCES); private static final ImmutableMap> ATTRIBUTES; private static final ImmutableMap> ELEMS; static { ATTRIBUTES = ImmutableMap.>builder() .put(SOURCE, attributeGetterSetter4AgentRef(SOURCE, getFieldOffset(OtherReferences.class, "source"))) .build(); ELEMS = ImmutableMap.>builder() .put(ALTERNATIVE_REFERENCE, AlternativeReference::new) .put(IMPLICIT_REFERENCE, ImplicitReference::new) .build(); } // Mandatory (min 1) private final AknList elems = new AknList<>(new OtherReferencesElement[2]); // Mandatory private AgentRef source; /** * {@inheritDoc} */ @Override public AgentRef getSource() { return this.source; } /** * {@inheritDoc} */ @Override public void setSource(AgentRef source) { this.source = source; } /** * {@inheritDoc} */ @Override public void write(XmlWriter writer) throws IOException { writer.writeStart(ADDRESS_OTHER_REFERENCES, 5); writeSource(writer, this); this.elems.write(writer); writer.writeEnd(ADDRESS_OTHER_REFERENCES, 5); } /** * {@inheritDoc} */ @Override public void read(XmlReader reader) { Attributes.read(reader, this); reader.nextStartOrEndElement(); XmlReaderHelper.read(reader, this.elems, ELEMS); } /** * {@inheritDoc} */ @Override public String name() { return OTHER_REFERENCES; } /** * {@inheritDoc} */ @Override public ImmutableMap> attributes() { return ATTRIBUTES; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy