Tabnine Logo
DefaultLineage.getSources
Code IndexAdd Tabnine to your IDE (free)

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

Best Java code snippets using org.apache.sis.metadata.iso.lineage.DefaultLineage.getSources (Showing top 4 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: apache/sis

/**
 * Verifies the unmarshalling result.
 */
private static void verify(final DefaultLineage lineage) {
  final Source source = TestUtilities.getSingleton(lineage.getSources());
  assertEquals("source.description", "Description of source data level.", String.valueOf(source.getDescription()));
}
origin: apache/sis

addIfNotPresent(lineage().getSources(), source);
origin: apache/sis

/**
 * Create a lineage to marshal. If {@code extension} is {@code false}, then this method uses
 * only properties defined in ISO 19115-1. If {@code extension} is {@code true}, then this
 * method adds an ISO 19115-2 property.
 */
private static DefaultLineage create(final boolean extension) {
  final DefaultLineage lineage = new DefaultLineage();
  final DefaultSource source = new DefaultSource();
  source.setDescription(new SimpleInternationalString("Description of source data level."));
  lineage.getSources().add(source);
  if (extension) {
    source.setProcessedLevel(new DefaultIdentifier("DummyLevel"));
  }
  return lineage;
}
origin: org.apache.sis.storage/sis-netcdf

if (value != null) {
  if (lineage == null) lineage = new DefaultLineage();
  addIfAbsent(lineage.getSources(), new DefaultSource(value));
org.apache.sis.metadata.iso.lineageDefaultLineagegetSources

Javadoc

Returns information about the source data used in creating the data specified by the scope.

Popular methods of DefaultLineage

  • <init>
    Constructs a new instance initialized with the values from the specified metadata object. This is a
  • 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.
  • getScope
    Returns the type of resource and / or extents to which the lineage information applies.
  • getStatement
    Returns the general explanation of the data producer's knowledge about the lineage of a dataset. Can
  • nonNullCollection
  • writeCollection
  • writeCollection

Popular in Java

  • Creating JSON documents from java classes using gson
  • addToBackStack (FragmentTransaction)
  • findViewById (Activity)
  • setScale (BigDecimal)
  • String (java.lang)
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • Sublime Text for Python
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