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

Packages that use AttributeType
com.vividsolutions.jump.datastore.jdbc   
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.workbench.ui   
de.fho.jump.pirol.ui.panels   
de.fho.jump.pirol.utilities.attributes   
org.openjump.core.apitools   
org.openjump.core.ui.plugin.tools.statistics   
org.openjump.sigle.plugin.joinTable   
 

Uses of AttributeType in com.vividsolutions.jump.datastore.jdbc
 

Methods in com.vividsolutions.jump.datastore.jdbc that return AttributeType
 AttributeType ValueConverterFactory.IntegerConverter.getType()
           
 AttributeType ValueConverterFactory.DoubleConverter.getType()
           
 AttributeType ValueConverterFactory.StringConverter.getType()
           
 AttributeType ValueConverterFactory.DateConverter.getType()
           
 AttributeType ValueConverter.getType()
           
 

Uses of AttributeType in com.vividsolutions.jump.feature
 

Fields in com.vividsolutions.jump.feature declared as AttributeType
static AttributeType AttributeType.DATE
          For dates
static AttributeType AttributeType.DOUBLE
          For double-precision values (64-bit)
static AttributeType AttributeType.GEOMETRY
          For spatial data
static AttributeType AttributeType.INTEGER
          For long values (64-bit)
static AttributeType AttributeType.OBJECT
          Experimental
static AttributeType AttributeType.STRING
          For strings
 

Methods in com.vividsolutions.jump.feature that return AttributeType
 AttributeType FeatureSchema.getAttributeType(int attributeIndex)
          Returns whether the attribute at the given zero-based index is a string, integer, double, etc.
 AttributeType FeatureSchema.getAttributeType(java.lang.String attributeName)
          Returns whether the attribute with the given name (case-sensitive) is a string, integer, double, etc.
static AttributeType AttributeType.toAttributeType(java.lang.Class javaClass)
          Returns the AttributeType of attributes that are instances of the given class, or null if it is not associated with any AttributeType.
static AttributeType AttributeType.toAttributeType(java.lang.String name)
          Converts a type name to an AttributeType.
 

Methods in com.vividsolutions.jump.feature with parameters of type AttributeType
 void FeatureSchema.addAttribute(java.lang.String attributeName, AttributeType attributeType)
          Adds an attribute with the given case-sensitive name.
 

Uses of AttributeType in com.vividsolutions.jump.io
 

Methods in com.vividsolutions.jump.io that return AttributeType
 AttributeType ColumnDescription.getType()
          Returns the [JCS] type of this column cf. setType()
 

Methods in com.vividsolutions.jump.io with parameters of type AttributeType
 void ColumnDescription.setType(AttributeType t)
          Sets the [JCS] type of this column
 

Uses of AttributeType in com.vividsolutions.jump.workbench.ui
 

Methods in com.vividsolutions.jump.workbench.ui that return AttributeType
 AttributeType SchemaTableModel.Field.getType()
           
 

Methods in com.vividsolutions.jump.workbench.ui with parameters of type AttributeType
 void SchemaTableModel.Field.setType(AttributeType type)
           
 

Uses of AttributeType in de.fho.jump.pirol.ui.panels
 

Fields in de.fho.jump.pirol.ui.panels declared as AttributeType
protected  AttributeType[] NewAttributePanel.onlyTypes
           
 

Constructors in de.fho.jump.pirol.ui.panels with parameters of type AttributeType
NewAttributePanel(boolean arg0, AttributeType[] onlyTypes, boolean needDefaultValue)
           
 

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

Fields in de.fho.jump.pirol.utilities.attributes declared as AttributeType
protected  AttributeType AttributeInfo.attributeType
           
 

Methods in de.fho.jump.pirol.utilities.attributes that return AttributeType
 AttributeType AttributeInfo.getAttributeType()
           
 

Methods in de.fho.jump.pirol.utilities.attributes with parameters of type AttributeType
 void AttributeInfo.setAttributeType(AttributeType attributeType)
           
 

Constructors in de.fho.jump.pirol.utilities.attributes with parameters of type AttributeType
AttributeInfo(AttributeType attributeType, java.lang.String attributeName)
           
AttributeInfo(AttributeType attributeType, java.lang.String attributeName, java.lang.Object nullValue)
           
 

Uses of AttributeType in org.openjump.core.apitools
 

Methods in org.openjump.core.apitools with parameters of type AttributeType
static PirolFeatureCollection FeatureCollectionTools.addAttributeToFeatureCollection(FeatureCollection fc, java.lang.String attr, AttributeType at, java.lang.Object defaultVal)
          Method to add a new attribute to an existing FeatureCollection.
static PirolFeatureCollection FeatureCollectionTools.addAttributeToFeatureCollection(FeatureCollection fc, java.lang.String attr, AttributeType at, java.lang.Object defaultVal, boolean clearOldFeatureCollection)
          Method to add a new attribute to an existing FeatureCollection.
 PirolFeatureCollection FeatureCollectionTools.addAttributeToFeatureCollection(java.lang.String attr, AttributeType at, java.lang.Object defaultVal)
           
static AttributeInfo[] FeatureSchemaTools.getAttributesWithTypes(FeatureSchema fs, AttributeType[] allowedTypes)
          Extracts information of all attributes with one of the given types from the given FeatureSchema
static boolean FeatureSchemaTools.isAttributeTypeAllowed(AttributeType at, AttributeType[] allowedTypes)
          Checks if the given attribute type is contained in the given array of allowed attribute types.
static boolean FeatureSchemaTools.isAttributeTypeAllowed(AttributeType at, AttributeType[] allowedTypes)
          Checks if the given attribute type is contained in the given array of allowed attribute types.
static boolean FeatureCollectionTools.isAttributeTypeNumeric(AttributeType at)
           
 

Uses of AttributeType in org.openjump.core.ui.plugin.tools.statistics
 

Methods in org.openjump.core.ui.plugin.tools.statistics with parameters of type AttributeType
protected  void StatisticOverViewTableModel.addRow(java.lang.String attrName, AttributeType type, java.lang.Double minVal, java.lang.Object mean, java.lang.Double maxVal, java.lang.Double deviation, java.lang.Double sum)
           
 

Uses of AttributeType in org.openjump.sigle.plugin.joinTable
 

Methods in org.openjump.sigle.plugin.joinTable that return AttributeType
 AttributeType JoinTable.getFieldType(int indice)