Codota Logo
FeatureWriter.getFeatureType
Code IndexAdd Codota to your IDE (free)

How to use
getFeatureType
method
in
org.geotools.data.FeatureWriter

Best Java code snippets using org.geotools.data.FeatureWriter.getFeatureType (Showing top 17 results out of 315)

  • Common ways to obtain FeatureWriter
private void myMethod () {
FeatureWriter f =
  • Codota IconDataStore dataStore;String typeName;Transaction transaction;dataStore.getFeatureWriterAppend(typeName, transaction)
  • Codota IconDataStore dataStore;String str;Transaction transaction;dataStore.getFeatureWriter(str, transaction)
  • Codota IconPropertyDataStore propertyDataStore;String typeName;new PropertyFeatureWriter(propertyDataStore, typeName)
  • Smart code suggestions by Codota
}
origin: geotools/geotools

/**
 * Supplys FeatureTypeFrom reader
 *
 * @see org.geotools.data.FeatureWriter#getFeatureType()
 */
public SimpleFeatureType getFeatureType() {
  return writer.getFeatureType();
}
origin: geotools/geotools

@Override
public SimpleFeatureType getFeatureType() {
  return (SimpleFeatureType) w.getFeatureType();
}
origin: geotools/geotools

public SimpleFeatureType getFeatureType() {
  return (SimpleFeatureType) writer.getFeatureType();
}
origin: geotools/geotools

public SimpleFeatureType getFeatureType() {
  return writer.getFeatureType();
}
origin: geotools/geotools

public SimpleFeatureType getFeatureType() {
  return writer.getFeatureType();
}
origin: geotools/geotools

  final FeatureWriter<SimpleFeatureType, SimpleFeature> writer,
  final Transaction transaction) {
SimpleFeatureType featureType = writer.getFeatureType();
final String typeName = featureType.getTypeName();
origin: org.geotools/gt-data

/**
 * Supplys FeatureTypeFrom reader
 * 
 * @see org.geotools.data.FeatureWriter#getFeatureType()
 */
public SimpleFeatureType getFeatureType() {
  return writer.getFeatureType();
}
origin: org.geotools/gt-geopkg

@Override
public SimpleFeatureType getFeatureType() {
  return (SimpleFeatureType) w.getFeatureType();
}
origin: org.geotools/gt-main

public SimpleFeatureType getFeatureType() {
  return writer.getFeatureType();
}
origin: org.geotools/gt-main

public SimpleFeatureType getFeatureType() {
  return writer.getFeatureType();
}
origin: org.geotools/gt-jdbc

public SimpleFeatureType getFeatureType() {
  return (SimpleFeatureType) writer.getFeatureType();
}
origin: org.geotools/gt2-main

public FeatureType getFeatureType() {
  return writer.getFeatureType();
}
origin: org.geotools/gt2-main

public FeatureType getFeatureType() {
  return writer.getFeatureType();
}
origin: org.geotools/gt-jdbc-core

public SimpleFeatureType getFeatureType() {
  return (SimpleFeatureType) writer.getFeatureType();
}
origin: mapplus/spatial_statistics_for_geotools_udig

@Override
public SimpleFeatureSource getFeatureSource() {
  if (writeMode) {
    try {
      return dataStore.getFeatureSource(writer.getFeatureType().getTypeName());
    } catch (IOException e) {
      LOGGER.log(Level.FINER, e.getMessage(), e);
    }
  } else {
    return sfStore;
  }
  return null;
}
origin: org.geotools/gt2-main

FeatureType featureType = writer.getFeatureType();
final String typeName = featureType.getTypeName();
origin: org.geotools/gt-main

SimpleFeatureType featureType = writer.getFeatureType();
final String typeName = featureType.getTypeName();
org.geotools.dataFeatureWritergetFeatureType

Javadoc

FeatureType this reader has been configured to create.

Popular methods of FeatureWriter

  • next
  • write
    Wrties the current Feature, must be called before hasNext. FeautreWriters will need to allow Feature
  • close
    Release the underlying resources.
  • hasNext
    Query whether this FeatureWriter has another Feature. Please note: it is more efficient to construct
  • remove
    Removes current Feature, must be called before hasNext. FeatureWriters will need to allow all Featur

Popular in Java

  • Running tasks concurrently on multiple threads
  • getSupportFragmentManager (FragmentActivity)
  • scheduleAtFixedRate (ScheduledExecutorService)
    Creates and executes a periodic action that becomes enabled first after the given initial delay, and
  • setContentView (Activity)
  • Menu (java.awt)
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • JLabel (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