congrats Icon
New! Announcing our next generation AI code completions
Read here
Tabnine Logo
DefaultLineage.getScope
Code IndexAdd Tabnine to your IDE (free)

How to use
getScope
method
in
org.apache.sis.metadata.iso.lineage.DefaultLineage

Best Java code snippets using org.apache.sis.metadata.iso.lineage.DefaultLineage.getScope (Showing top 2 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
List l =
  • Codota Iconnew ArrayList()
  • Codota Iconnew LinkedList()
  • Smart code suggestions by Tabnine
}
origin: org.apache.sis.core/sis-metadata

/**
 * 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);
    }
  }
}
origin: apache/sis

/**
 * 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);
    }
  }
}
org.apache.sis.metadata.iso.lineageDefaultLineagegetScope

Javadoc

Returns the type of resource and / or extents to which the lineage information applies.

Popular methods of DefaultLineage

  • <init>
    Constructs a new instance initialized with the values from the specified metadata object. This is a
  • getSources
    Returns information about the source data used in creating the data specified by the scope.
  • setStatement
    Sets the general explanation of the data producer’s knowledge about the lineage of a dataset.
  • castOrCopy
    Returns a SIS metadata implementation with the values of the given arbitrary implementation. This me
  • checkWritePermission
  • copyCollection
  • getAdditionalDocumentation
    Returns additional documentation.
  • getProcessSteps
    Returns the information about about events in the life of a resource specified by the scope.
  • getStatement
    Returns the general explanation of the data producer's knowledge about the lineage of a dataset. Can
  • nonNullCollection
  • writeCollection
  • writeCollection

Popular in Java

  • Finding current android device location
  • putExtra (Intent)
  • getApplicationContext (Context)
  • getExternalFilesDir (Context)
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • Reference (javax.naming)
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registry of org.quartz.Job
  • 21 Best Atom Packages for 2021
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now