Codota Logo
DefaultDistribution.getDistributors
Code IndexAdd Codota to your IDE (free)

How to use
getDistributors
method
in
org.apache.sis.metadata.iso.distribution.DefaultDistribution

Best Java code snippets using org.apache.sis.metadata.iso.distribution.DefaultDistribution.getDistributors (Showing top 2 results out of 315)

  • Common ways to obtain DefaultDistribution
private void myMethod () {
DefaultDistribution d =
  • Codota Iconnew DefaultDistribution()
  • Smart code suggestions by Codota
}
origin: apache/sis

/**
 * Adds a distributor. This is often the same than the above responsible party.
 * Storage location is:
 *
 * <ul>
 *   <li>{@code metadata/distributionInfo/distributor/distributorContact}</li>
 * </ul>
 *
 * @param  distributor  the distributor, or {@code null} for no-operation.
 */
public final void addDistributor(final ResponsibleParty distributor) {
  if (distributor != null) {
    addIfNotPresent(distribution().getDistributors(), new DefaultDistributor(distributor));
  }
}
origin: org.apache.sis.storage/sis-storage

/**
 * Adds a distributor. This is often the same than the above responsible party.
 * Storage location is:
 *
 * <ul>
 *   <li>{@code metadata/distributionInfo/distributor/distributorContact}</li>
 * </ul>
 *
 * @param  distributor  the distributor, or {@code null} for no-operation.
 */
public final void addDistributor(final ResponsibleParty distributor) {
  if (distributor != null) {
    addIfNotPresent(distribution().getDistributors(), new DefaultDistributor(distributor));
  }
}
org.apache.sis.metadata.iso.distributionDefaultDistributiongetDistributors

Javadoc

Provides information about the distributor.

Popular methods of DefaultDistribution

  • <init>
    Constructs a new instance initialized with the values from the specified metadata object. This is a
  • setDistributors
    Sets information about the distributor.
  • castOrCopy
    Returns a SIS metadata implementation with the values of the given arbitrary implementation. This me
  • checkWritePermission
  • copyCollection
  • getDescription
    Returns a brief description of a set of distribution options.
  • nonNullCollection
  • setDistributionFormats
    Sets a description of the format of the data to be distributed.
  • setTransferOptions
    Sets information about technical means and media by which a resource is obtained from the distributo
  • writeCollection

Popular in Java

  • Reading from database using SQL prepared statement
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • putExtra (Intent)
  • setRequestProperty (URLConnection)
    Sets the general request property. If a property with the key already exists, overwrite its value wi
  • ObjectMapper (com.fasterxml.jackson.databind)
    This mapper (or, data binder, or codec) provides functionality for converting between Java objects (
  • Graphics2D (java.awt)
    This Graphics2D class extends the Graphics class to provide more sophisticated control overgraphics
  • BigInteger (java.math)
    Immutable arbitrary-precision integers. All operations behave as if BigIntegers were represented in
  • URLConnection (java.net)
    The abstract class URLConnection is the superclass of all classes that represent a communications li
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • Pattern (java.util.regex)
    A compiled representation of a regular expression. A regular expression, specified as a string, must
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now