Codota Logo
ProcessType$ProcessParameter
Code IndexAdd Codota to your IDE (free)

How to use
ProcessType$ProcessParameter
in
eu.europa.ec.inspire.schemas.ompr.x30

Best Java code snippets using eu.europa.ec.inspire.schemas.ompr.x30.ProcessType$ProcessParameter (Showing top 5 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
LocalDateTime l =
  • Codota Iconnew LocalDateTime()
  • Codota IconLocalDateTime.now()
  • Codota IconDateTimeFormatter formatter;String text;formatter.parseLocalDateTime(text)
  • Smart code suggestions by Codota
}
origin: org.n52.sensorweb/52n-xml-inspire-ompr-v30

/**
 * Tests for nil ith "processParameter" element
 */
public boolean isNilProcessParameterArray(int i)
{
  synchronized (monitor())
  {
    check_orphaned();
    eu.europa.ec.inspire.schemas.ompr.x30.ProcessType.ProcessParameter target = null;
    target = (eu.europa.ec.inspire.schemas.ompr.x30.ProcessType.ProcessParameter)get_store().find_element_user(PROCESSPARAMETER$8, i);
    if (target == null)
    {
      throw new IndexOutOfBoundsException();
    }
    return target.isNil();
  }
}

origin: org.n52.sensorweb/52n-xml-inspire-ompr-v30

/**
 * Sets ith "processParameter" element
 */
public void setProcessParameterArray(int i, eu.europa.ec.inspire.schemas.ompr.x30.ProcessType.ProcessParameter processParameter)
{
  synchronized (monitor())
  {
    check_orphaned();
    eu.europa.ec.inspire.schemas.ompr.x30.ProcessType.ProcessParameter target = null;
    target = (eu.europa.ec.inspire.schemas.ompr.x30.ProcessType.ProcessParameter)get_store().find_element_user(PROCESSPARAMETER$8, i);
    if (target == null)
    {
      throw new IndexOutOfBoundsException();
    }
    target.set(processParameter);
  }
}

origin: org.n52.sensorweb/52n-xml-inspire-ompr-v30

/**
 * Nils the ith "processParameter" element
 */
public void setNilProcessParameterArray(int i)
{
  synchronized (monitor())
  {
    check_orphaned();
    eu.europa.ec.inspire.schemas.ompr.x30.ProcessType.ProcessParameter target = null;
    target = (eu.europa.ec.inspire.schemas.ompr.x30.ProcessType.ProcessParameter)get_store().find_element_user(PROCESSPARAMETER$8, i);
    if (target == null)
    {
      throw new IndexOutOfBoundsException();
    }
    target.setNil();
  }
}

origin: org.n52.svalbard/svalbard-xmlbeans

private void addProcessParameter(ProcessType pt, Process process) throws EncodingException {
  if (process.isSetProcessParameter()) {
    for (ProcessParameter processParameter : process.getProcessParameter()) {
      pt.addNewProcessParameter().addNewProcessParameter().set(encodeOMPR(processParameter));
    }
  }
}
origin: org.n52.sensorweb.sos/coding-inspire-ompr

private void addProcessParameter(ProcessType pt, Process process) throws OwsExceptionReport {
  if (process.isSetProcessParameter()) {
    for (ProcessParameter processParameter : process.getProcessParameter()) {
      pt.addNewProcessParameter().addNewProcessParameter().set(encodeOMPR(processParameter));
    }
  }
}
eu.europa.ec.inspire.schemas.ompr.x30ProcessType$ProcessParameter

Javadoc

An XML processParameter(@http://inspire.ec.europa.eu/schemas/ompr/3.0). This is a complex type.

Most used methods

  • addNewProcessParameter
    Appends and returns a new empty "ProcessParameter" element
  • isNil
  • set
  • setNil

Popular in Java

  • Making http post requests using okhttp
  • onCreateOptionsMenu (Activity)
  • getResourceAsStream (ClassLoader)
    Returns a stream for the resource with the specified name. See #getResource(String) for a descriptio
  • scheduleAtFixedRate (ScheduledExecutorService)
    Creates and executes a periodic action that becomes enabled first after the given initial delay, and
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • MalformedURLException (java.net)
    Thrown to indicate that a malformed URL has occurred. Either no legal protocol could be found in a s
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate(i
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • JPanel (javax.swing)
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