- Add the Codota plugin to your IDE and get smart completions
private void myMethod () {}
/** * Invoked by JAXB at both marshalling and unmarshalling time. * This attribute has been added by ISO 19115:2014 standard. * If (and only if) marshalling an older standard version, we omit this attribute. */ @XmlElement(name = "additionalDocumentation") private Collection<Citation> getDocumentation() { return FilterByVersion.CURRENT_METADATA.accept() ? getAdditionalDocumentation() : null; } }
/** * Constructs a new instance initialized with the values from the specified metadata object. * This is a <cite>shallow</cite> copy constructor, since the other metadata contained in the * given object are not recursively copied. * * @param object the metadata to copy values from, or {@code null} if none. * * @see #castOrCopy(Lineage) */ public DefaultLineage(final Lineage object) { super(object); if (object != null) { statement = object.getStatement(); processSteps = copyCollection(object.getProcessSteps(), ProcessStep.class); sources = copyCollection(object.getSources(), Source.class); if (object instanceof DefaultLineage) { scope = ((DefaultLineage) object).getScope(); additionalDocumentation = copyCollection(((DefaultLineage) object).getAdditionalDocumentation(), Citation.class); } } }
/** * Constructs a new instance initialized with the values from the specified metadata object. * This is a <cite>shallow</cite> copy constructor, since the other metadata contained in the * given object are not recursively copied. * * @param object the metadata to copy values from, or {@code null} if none. * * @see #castOrCopy(Lineage) */ public DefaultLineage(final Lineage object) { super(object); if (object != null) { statement = object.getStatement(); processSteps = copyCollection(object.getProcessSteps(), ProcessStep.class); sources = copyCollection(object.getSources(), Source.class); if (object instanceof DefaultLineage) { scope = ((DefaultLineage) object).getScope(); additionalDocumentation = copyCollection(((DefaultLineage) object).getAdditionalDocumentation(), Citation.class); } } }