Tabnine Logo
SosContentCache.getChildProcedures
Code IndexAdd Tabnine to your IDE (free)

How to use
getChildProcedures
method
in
org.n52.sos.cache.SosContentCache

Best Java code snippets using org.n52.sos.cache.SosContentCache.getChildProcedures (Showing top 4 results out of 315)

origin: 52North/SOS

protected List<String> addChildProcedures(Collection<String> procedures) {
  Set<String> allProcedures = Sets.newHashSet();
  if (procedures != null) {
    for (String procedure : procedures) {
      allProcedures.add(procedure);
      allProcedures.addAll(getCache().getChildProcedures(procedure, true, false));
    }
  }
  return Lists.newArrayList(allProcedures);
}
origin: 52North/SOS

protected boolean hasChildProcedure(String procedure) {
  return CollectionHelper.isNotEmpty(getCache().getChildProcedures(procedure, false, false));
}
origin: org.n52.sensorweb.sos/hibernate-common

protected boolean hasChildProcedure(String procedure) {
  return CollectionHelper.isNotEmpty(getCache().getChildProcedures(procedure, false, false));
}
origin: 52North/SOS

protected boolean hasChildProcedure(String procedure) {
  return CollectionHelper.isNotEmpty(getCache().getChildProcedures(procedure, false, false));
}
org.n52.sos.cacheSosContentCachegetChildProcedures

Javadoc

Returns collection containing child procedures for the passed procedures, optionally navigating the full hierarchy and including itself.

Popular methods of SosContentCache

  • getOfferings
  • getObservableProperties
  • getFeatureOfInterestTypes
  • getObservationTypes
  • getProceduresForOffering
  • hasObservableProperty
  • hasOffering
  • getAllowedObservationTypesForOffering
  • getEpsgCodes
  • getOfferingsForProcedure
  • getProcedures
  • getPublishedObservableProperties
  • getProcedures,
  • getPublishedObservableProperties,
  • getPublishedOfferings,
  • hasResultTemplate,
  • getAllObservationTypesForOffering,
  • getCompositePhenomenonsForOffering,
  • getEnvelopeForOffering,
  • getFeaturesOfInterest,
  • getFeaturesOfInterestForOffering

Popular in Java

  • Start an intent from android
  • scheduleAtFixedRate (Timer)
  • onCreateOptionsMenu (Activity)
  • compareTo (BigDecimal)
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • Collectors (java.util.stream)
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • JList (javax.swing)
  • Best plugins for Eclipse
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