Uses of Class
com.vividsolutions.jump.feature.FeatureSchema

Packages that use FeatureSchema
com.vividsolutions.jump.datastore.postgis   
com.vividsolutions.jump.feature Features and FeatureCollections -- the layer of abstraction between Geometries in JTS and Layers in the JUMP Workbench. 
com.vividsolutions.jump.io   
com.vividsolutions.jump.tools   
com.vividsolutions.jump.workbench.imagery   
com.vividsolutions.jump.workbench.model.cache   
com.vividsolutions.jump.workbench.ui.cursortool   
com.vividsolutions.jump.workbench.ui.plugin The built-in JUMP "plug-ins" (code modules that can be assigned to buttons and menu items). 
com.vividsolutions.jump.workbench.ui.plugin.clipboard   
com.vividsolutions.jump.workbench.ui.renderer.style   
de.fho.jump.pirol.plugins.EditAttributeByFormula   
de.fho.jump.pirol.utilities.attributes   
de.fho.jump.pirol.utilities.FormulaParsing   
org.openjump.core.apitools   
org.openjump.core.apitools.objecttyperoles   
org.openjump.core.attributeoperations   
org.openjump.core.graph.polygongraph   
org.openjump.core.ui.plugin.layer   
org.openjump.core.ui.plugin.layer.pirolraster   
org.openjump.core.ui.plugin.tools   
 

Uses of FeatureSchema in com.vividsolutions.jump.datastore.postgis
 

Methods in com.vividsolutions.jump.datastore.postgis that return FeatureSchema
 FeatureSchema PostgisResultSetConverter.getFeatureSchema()
           
 FeatureSchema PostgisFeatureInputStream.getFeatureSchema()
           
 

Uses of FeatureSchema in com.vividsolutions.jump.feature
 

Methods in com.vividsolutions.jump.feature that return FeatureSchema
 FeatureSchema FeatureCollectionWrapper.getFeatureSchema()
           
 FeatureSchema FeatureCollection.getFeatureSchema()
          Returns information about this FeatureCollection
 FeatureSchema FeatureDataset.getFeatureSchema()
           
 FeatureSchema Feature.getSchema()
          Returns the feature's metadata
 FeatureSchema AbstractBasicFeature.getSchema()
          Returns the feature's metadata
 FeatureSchema FeatureSchema.setCoordinateSystem(CoordinateSystem coordinateSystem)
          Sets the CoordinateSystem associated with this FeatureSchema, but does not perform any reprojection.
 

Methods in com.vividsolutions.jump.feature with parameters of type FeatureSchema
static FeatureDataset FeatureDatasetFactory.createFromGeometry(java.util.Collection geoms, FeatureSchema featureSchema)
          Creates a FeatureDataset from a Collection of Geometrys using the given FeatureSchema
 void Feature.setSchema(FeatureSchema schema)
          A low-level accessor that is not normally used.
 void AbstractBasicFeature.setSchema(FeatureSchema schema)
          A low-level accessor that is not normally used.
static Feature FeatureUtil.toFeature(com.vividsolutions.jts.geom.Geometry g, FeatureSchema schema)
          Creates a new Feature from the given Geometry, with nominal values for the attributes.
 

Constructors in com.vividsolutions.jump.feature with parameters of type FeatureSchema
AbstractBasicFeature(FeatureSchema featureSchema)
          Creates a new Feature based on the given metadata.
BasicFeature(FeatureSchema featureSchema)
          Constructs a BasicFeature with the given FeatureSchema specifying the attribute names and types.
FeatureDataset(java.util.Collection newFeatures, FeatureSchema featureSchema)
          Creates a FeatureDataset, initialized with a group of Features.
FeatureDataset(FeatureSchema featureSchema)
          Creates a FeatureDataset.
 

Uses of FeatureSchema in com.vividsolutions.jump.io
 

Methods in com.vividsolutions.jump.io that return FeatureSchema
 FeatureSchema FeatureInputStream.getFeatureSchema()
           
abstract  FeatureSchema BaseFeatureInputStream.getFeatureSchema()
           
 FeatureSchema GMLInputTemplate.toFeatureSchema()
          Converts this GMLInputTemplate to a feature schema.
 

Methods in com.vividsolutions.jump.io with parameters of type FeatureSchema
 GMLOutputTemplate FMEGMLWriter.createOutputTemplate(FeatureSchema fs)
          Makes a GMLOutputTemplate from a featureSchema.
static java.lang.String GMLWriter.makeInputTemplate(FeatureSchema fcmd)
          given a FeatureSchema, make a chunk of XML that represents a valid GMLInputTemplate for the JCS format.
static GMLOutputTemplate GMLWriter.makeOutputTemplate(FeatureSchema fcmd)
          given a FEatureSchema, make an output template in the JCS format
 

Uses of FeatureSchema in com.vividsolutions.jump.tools
 

Subclasses of FeatureSchema in com.vividsolutions.jump.tools
static class AttributeMapping.CombinedSchema
           
 

Constructors in com.vividsolutions.jump.tools with parameters of type FeatureSchema
AttributeMapping(FeatureSchema a, FeatureSchema b)
          Constructs an AttributeMapping that will transfer all the attributes from two feature collections A and B.
AttributeMapping(FeatureSchema aSchema, java.util.List aAttributeNames, java.util.List aNewAttributeNames, FeatureSchema bSchema, java.util.List bAttributeNames, java.util.List bNewAttributeNames)
          Constructs an AttributeMapping.
 

Uses of FeatureSchema in com.vividsolutions.jump.workbench.imagery
 

Fields in com.vividsolutions.jump.workbench.imagery declared as FeatureSchema
static FeatureSchema ImageryLayerDataset.SCHEMA
           
 

Methods in com.vividsolutions.jump.workbench.imagery that return FeatureSchema
static FeatureSchema ImageryLayerDataset.getSchema()
           
 

Uses of FeatureSchema in com.vividsolutions.jump.workbench.model.cache
 

Methods in com.vividsolutions.jump.workbench.model.cache that return FeatureSchema
 FeatureSchema DynamicFeatureCollection.getFeatureSchema()
           
 FeatureSchema CachingFeatureCollection.getFeatureSchema()
           
 FeatureSchema ThreadSafeFeatureCollectionWrapper.getFeatureSchema()
           
 

Uses of FeatureSchema in com.vividsolutions.jump.workbench.ui.cursortool
 

Methods in com.vividsolutions.jump.workbench.ui.cursortool that return FeatureSchema
static FeatureSchema NoteStyle.createFeatureSchema()
           
 

Uses of FeatureSchema in com.vividsolutions.jump.workbench.ui.plugin
 

Methods in com.vividsolutions.jump.workbench.ui.plugin that return FeatureSchema
static FeatureSchema FeatureStatisticsPlugIn.getStatisticsSchema()
           
 

Uses of FeatureSchema in com.vividsolutions.jump.workbench.ui.plugin.clipboard
 

Methods in com.vividsolutions.jump.workbench.ui.plugin.clipboard with parameters of type FeatureSchema
static java.util.Collection PasteItemsPlugIn.conform(java.util.Collection features, FeatureSchema targetFeatureSchema)
           
 

Uses of FeatureSchema in com.vividsolutions.jump.workbench.ui.renderer.style
 

Methods in com.vividsolutions.jump.workbench.ui.renderer.style with parameters of type FeatureSchema
protected  java.util.List ColorThemingTableModel.createColumns(FeatureSchema schema)
           
 

Constructors in com.vividsolutions.jump.workbench.ui.renderer.style with parameters of type FeatureSchema
ColorThemingTableModel(BasicStyle defaultStyle, java.lang.String attributeName, java.util.Map attributeValueToBasicStyleMap, java.util.Map attributeValueToLabelMap, FeatureSchema schema)
           
 

Uses of FeatureSchema in de.fho.jump.pirol.plugins.EditAttributeByFormula
 

Fields in de.fho.jump.pirol.plugins.EditAttributeByFormula declared as FeatureSchema
protected  FeatureSchema FormulaEditingPanel.featureSchema
           
protected  FeatureSchema EditAttributeByFormulaDialog.featureSchema
           
protected  FeatureSchema AddFormulaPartToTextArea_Action.featureSchema
           
 

Constructors in de.fho.jump.pirol.plugins.EditAttributeByFormula with parameters of type FeatureSchema
AddFormulaPartToTextArea_Action(java.lang.String formulaPart, javax.swing.JTextArea textArea, java.lang.String[] mathSigns, FeatureSchema featureSchema)
           
EditAttributeByFormulaDialog(java.awt.Frame parentFrame, java.lang.String title, boolean modal, java.lang.String text, FeatureSchema featureSchema)
           
EditAttributeByFormulaDialog(java.awt.Frame parentFrame, java.lang.String title, boolean modal, java.lang.String text, FeatureSchema featureSchema, PropertiesHandler storedFormulas)
           
FormulaEditingPanel(FeatureSchema featureSchema, NewAttributePanel newAttributePanel)
           
FormulaEditingPanel(FeatureSchema featureSchema, PropertiesHandler storedFormulas, NewAttributePanel newAttributePanel)
           
 

Uses of FeatureSchema in de.fho.jump.pirol.utilities.attributes
 

Methods in de.fho.jump.pirol.utilities.attributes that return FeatureSchema
static FeatureSchema AttributeInfo.attributeInfoArray2FeatureSchema(AttributeInfo[] attributeInfos)
          convenient method to convert an AttributeInfo array into a FeatureSchema
 

Methods in de.fho.jump.pirol.utilities.attributes with parameters of type FeatureSchema
static AttributeInfo[] AttributeInfo.schema2AttributeInfoArray(FeatureSchema fs)
          convenient method to convert a FeatureSchema into an AttributeInfo array
 

Uses of FeatureSchema in de.fho.jump.pirol.utilities.FormulaParsing
 

Methods in de.fho.jump.pirol.utilities.FormulaParsing with parameters of type FeatureSchema
static FormulaValue FormulaParser.getValue(java.lang.String formula, FeatureSchema featSchema)
          Recursively parses a given (sub-) formula into a FormulaValue, which can be an operation with sub-FormularValues or a value.
 

Uses of FeatureSchema in org.openjump.core.apitools
 

Methods in org.openjump.core.apitools with parameters of type FeatureSchema
protected static boolean FeatureCollectionTools.attributeExistsInSchema(FeatureSchema fs, java.lang.String attr)
           
static Feature FeatureCollectionTools.copyFeatureAndSetFeatureSchema(Feature feat, FeatureSchema newFs)
          "deep copys" the given Feature and thereby sets the given feature schema
static AttributeInfo FeatureSchemaTools.getAttributesInfoFor(FeatureSchema fs, int attrIndex)
          Extracts information on the attribute at the given index from the feature schema.
static AttributeInfo FeatureSchemaTools.getAttributesInfoFor(FeatureSchema fs, java.lang.String attrName)
          Extracts information on the attribute with the given name from the feature schema.
static AttributeInfo[] FeatureSchemaTools.getAttributesWithTypes(FeatureSchema fs, AttributeType[] allowedTypes)
          Extracts information of all attributes with one of the given types from the given FeatureSchema
static double[] FeatureCollectionTools.getMinMaxAttributeValue(Feature[] featArray, FeatureSchema fs, java.lang.String attr)
           
static double FeatureCollectionTools.getSumAttributeValue(Feature[] featArray, FeatureSchema fs, java.lang.String attr)
           
 

Uses of FeatureSchema in org.openjump.core.apitools.objecttyperoles
 

Methods in org.openjump.core.apitools.objecttyperoles that return FeatureSchema
 FeatureSchema PirolFeatureCollection.getFeatureSchema()
           
 

Uses of FeatureSchema in org.openjump.core.attributeoperations
 

Methods in org.openjump.core.attributeoperations that return FeatureSchema
static FeatureSchema JoinAttributes.copyFeatureSchema(FeatureSchema oldSchema)
          copy/clone the input featureSchema since it is not proper implemented in Jump
 

Methods in org.openjump.core.attributeoperations with parameters of type FeatureSchema
static Feature JoinAttributes.copyFeature(Feature feature, FeatureSchema newSchema)
          copy the input feature to a new Schema whereby the new Feature Schema musst be an extended or shortened one
static FeatureSchema JoinAttributes.copyFeatureSchema(FeatureSchema oldSchema)
          copy/clone the input featureSchema since it is not proper implemented in Jump
 

Uses of FeatureSchema in org.openjump.core.graph.polygongraph
 

Methods in org.openjump.core.graph.polygongraph that return FeatureSchema
static FeatureSchema PolygonGraphNode.getBoundaryFeatureSchema()
           
static FeatureSchema PolygonGraphEdge.getEdgeFeatureSchema()
           
 

Uses of FeatureSchema in org.openjump.core.ui.plugin.layer
 

Methods in org.openjump.core.ui.plugin.layer with parameters of type FeatureSchema
static java.util.Collection CombineSelectedLayersPlugIn.conform(java.util.Collection features, FeatureSchema targetFeatureSchema, java.lang.String layerName)
           
 

Uses of FeatureSchema in org.openjump.core.ui.plugin.layer.pirolraster
 

Fields in org.openjump.core.ui.plugin.layer.pirolraster declared as FeatureSchema
protected static FeatureSchema ExportEnvelopeAsGeometryPlugIn.defaultSchema
           
 

Uses of FeatureSchema in org.openjump.core.ui.plugin.tools
 

Methods in org.openjump.core.ui.plugin.tools with parameters of type FeatureSchema
 FeatureDataset CreateThiessenPolygonsPlugIn.transferAttributes(FeatureSchema fs, com.vividsolutions.jts.index.quadtree.Quadtree treeWithFeatures, java.util.ArrayList thiessenGeoms)