congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
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)

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
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • setScale (BigDecimal)
  • scheduleAtFixedRate (Timer)
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • Reference (javax.naming)
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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