Codota Logo
MetadataType.getArcrole
Code IndexAdd Codota to your IDE (free)

How to use
getArcrole
method
in
net.opengis.ows.x11.MetadataType

Best Java code snippets using net.opengis.ows.x11.MetadataType.getArcrole (Showing top 1 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
ArrayList a =
  • Codota Iconnew ArrayList<String>()
  • Codota Iconnew ArrayList()
  • Codota Iconnew ArrayList<Object>()
  • Smart code suggestions by Codota
}
origin: org.n52.svalbard/svalbard-xmlbeans

private OwsMetadata parseMetadata(MetadataType metadata) {
  if (metadata == null) {
    return null;
  }
  URI href = Optional.ofNullable(metadata.getHref()).map(Strings::emptyToNull).map(URI::create).orElse(null);
  URI role = Optional.ofNullable(metadata.getRole()).map(Strings::emptyToNull).map(URI::create).orElse(null);
  URI arcrole =
      Optional.ofNullable(metadata.getArcrole()).map(Strings::emptyToNull).map(URI::create).orElse(null);
  Show show = Optional.ofNullable(metadata.getShow()).map(Object::toString).map(Show::valueOf).orElse(null);
  Actuate actuate =
      Optional.ofNullable(metadata.getActuate()).map(Object::toString).map(Actuate::valueOf).orElse(null);
  URI about =
      Optional.ofNullable(metadata.getAbout()).map(Strings::emptyToNull).map(URI::create).orElse(null);
  String title = metadata.getTitle();
  return new OwsMetadata(href, role, arcrole, title, show, actuate, about);
}
net.opengis.ows.x11MetadataTypegetArcrole

Javadoc

Gets the "arcrole" attribute

Popular methods of MetadataType

  • set
  • getAbout
    Gets the "about" attribute
  • getActuate
    Gets the "actuate" attribute
  • getHref
    Gets the "href" attribute
  • getRole
    Gets the "role" attribute
  • getShow
    Gets the "show" attribute
  • getTitle
    Gets the "title" attribute
  • setActuate
    Sets the "actuate" attribute
  • setArcrole
    Sets the "arcrole" attribute
  • setHref
    Sets the "href" attribute
  • setRole
    Sets the "role" attribute
  • setShow
    Sets the "show" attribute
  • setRole,
  • setShow,
  • setTitle,
  • setType

Popular in Java

  • Making http requests using okhttp
  • scheduleAtFixedRate (Timer)
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • Timer (java.util)
    A facility for threads to schedule tasks for future execution in a background thread. Tasks may be s
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • 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
  • IsNull (org.hamcrest.core)
    Is the value null?
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