congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
Description.getKeywords
Code IndexAdd Tabnine to your IDE (free)

How to use
getKeywords
method
in
org.deegree.commons.ows.metadata.Description

Best Java code snippets using org.deegree.commons.ows.metadata.Description.getKeywords (Showing top 3 results out of 315)

origin: deegree/deegree3

private void mergeDescription( Description desc ) {
  if ( desc != null ) {
    if ( description.getTitles() == null || description.getTitles().isEmpty() ) {
      description.setTitles( desc.getTitles() );
    }
    if ( description.getAbstracts() == null || description.getAbstracts().isEmpty() ) {
      description.setAbstracts( desc.getAbstracts() );
    }
    if ( description.getKeywords() == null || description.getKeywords().isEmpty() ) {
      description.setKeywords( desc.getKeywords() );
    }
  }
}
origin: deegree/deegree3

  abstracts.addAll( description.getAbstracts() );
if ( description.getKeywords() != null ) {
  keywords.addAll( description.getKeywords() );
origin: deegree/deegree3

  writeElement( writer, OWS110_NS, "Abstract", abs.getString() );
exportKeyWords110New( writer, desc.getKeywords() );
if ( env != null ) {
  env = getWgs84Envelope( env );
org.deegree.commons.ows.metadataDescriptiongetKeywords

Popular methods of Description

  • <init>
    Creates a new Description instance.
  • getAbstracts
  • getTitles
  • setAbstracts
  • setKeywords
  • setTitles
  • getAbstract
    Returns the abstract in the specified language.
  • getName
    Returns the name of the object.
  • getTitle
    Returns the title in the specified language.

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • setScale (BigDecimal)
  • getResourceAsStream (ClassLoader)
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • 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