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

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

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

/**
 * Adds a general explanation of the data producer's knowledge about the lineage of a dataset.
 * If a statement already exists, the new one will be appended after a new line.
 * Storage location is:
 *
 * <ul>
 *   <li>{@code metadata/resourceLineage/statement}</li>
 * </ul>
 *
 * @param statement  explanation of the data producer's knowledge about the lineage, or {@code null} for no-operation.
 *
 * @see #addProcessDescription(CharSequence)
 */
public final void addLineage(final CharSequence statement) {
  final InternationalString i18n = trim(statement);
  if (i18n != null) {
    final DefaultLineage lineage = lineage();
    lineage.setStatement(append(lineage.getStatement(), i18n));
  }
}
org.apache.sis.metadata.iso.lineageDefaultLineagegetStatement

Javadoc

Returns the general explanation of the data producer's knowledge about the lineage of a dataset. Can be provided only if DefaultScope#getLevelis ScopeCode#DATASET or ScopeCode#SERIES.

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.
  • getScope
    Returns the type of resource and / or extents to which the lineage information applies.
  • 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
  • Top 25 Plugins for Webstorm
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