Tabnine Logo
Schema.setId
Code IndexAdd Tabnine to your IDE (free)

How to use
setId
method
in
de.micromata.opengis.kml.v_2_2_0.Schema

Best Java code snippets using de.micromata.opengis.kml.v_2_2_0.Schema.setId (Showing top 3 results out of 315)

origin: de.micromata.jak/JavaAPIforKml

/**
 * fluent setter
 * @see #setId(String)
 * 
 * @param id
 *     required parameter
 */
public Schema withId(final String id) {
  this.setId(id);
  return this;
}
origin: micromata/javaapiforkml

/**
 * fluent setter
 * @see #setId(String)
 * 
 * @param id
 *     required parameter
 */
public Schema withId(final String id) {
  this.setId(id);
  return this;
}
origin: org.geoserver/kml

private void addSchema(Document doc, String id, SimpleFeatureType featureType) {
  Schema schema = doc.createAndAddSchema();
  schema.setId(id);
  schema.setName(id);
  for (AttributeDescriptor ad : featureType.getAttributeDescriptors()) {
    // skip geometry attributes
    if (ad instanceof GeometryDescriptor) {
      continue;
    }
    SimpleField field = schema.createAndAddSimpleField();
    field.setName(ad.getLocalName());
    field.setType(getKmlFieldType(ad));
  }
}
de.micromata.opengis.kml.v_2_2_0SchemasetId

Popular methods of Schema

  • <init>
  • setName
  • clone
  • createAndAddSimpleField
    Creates a new instance of SimpleField and adds it to simpleField. This method is a short version for
  • getSchemaExtension
  • getSimpleField
  • setSchemaExtension
  • setSimpleField
  • withId
    fluent setter
  • withSimpleField
    fluent setter

Popular in Java

  • Start an intent from android
  • getExternalFilesDir (Context)
  • compareTo (BigDecimal)
  • onCreateOptionsMenu (Activity)
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • JFileChooser (javax.swing)
  • JOptionPane (javax.swing)
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • Top plugins for WebStorm
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