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   
 

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.STRING
          For strings
static AttributeType AttributeType.GEOMETRY
          For spatial data
static AttributeType AttributeType.INTEGER
          For long values (64-bit)
static AttributeType AttributeType.DATE
          For dates
static AttributeType AttributeType.DOUBLE
          For double-precision values (64-bit)
static AttributeType AttributeType.OBJECT
          Experimental
 

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.String name)
          Converts a type name to an AttributeType.
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.
 

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.
 

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)