Uses of Class
gistoolkit.features.AttributeType

Packages that use AttributeType
gistoolkit.application.layers.tableeditor   
gistoolkit.datasources   
gistoolkit.datasources.db2spatialextender   
gistoolkit.datasources.memory   
gistoolkit.datasources.shapefile   
gistoolkit.display   
gistoolkit.display.widgets   
gistoolkit.features   
 

Uses of AttributeType in gistoolkit.application.layers.tableeditor
 

Methods in gistoolkit.application.layers.tableeditor that return AttributeType
 AttributeType[] MemoryTableEditor.getAttributeTypes()
          Return the edited attribute types.
 

Methods in gistoolkit.application.layers.tableeditor with parameters of type AttributeType
 void MemoryTableEditor.setAttributes(java.lang.String[] inAttributeNames, AttributeType[] inAttributeTypes)
          Set the attributes and types to edit in this editor.
 

Uses of AttributeType in gistoolkit.datasources
 

Methods in gistoolkit.datasources that return AttributeType
 AttributeType GISDataset.getAttributeType(int inIndex)
          Return the attribute type at the given index.
 AttributeType[] GISDataset.getAttributeTypes()
          Return teh attribute types.
 AttributeType SQLConverter.getAttributeType(java.sql.ResultSetMetaData inrmet, int inIndex)
          Convert the given ODBC type of data to the GISToolkit type of data.
protected  AttributeType[] SimpleJoinDataSource.getJoinDataSourceAttributeTypes()
          Method to return the attribute types for the data source.
 AttributeType SimpleSQLConverter.getAttributeType(java.sql.ResultSetMetaData inrmet, int inIndex)
          Convert the given ODBC type of data to the GISToolkit type of data.
 

Methods in gistoolkit.datasources with parameters of type AttributeType
 java.lang.String SQLConverter.toSQL(java.lang.Object inObject, AttributeType inAttributeType, int inJDBCType)
          Take the given type, of the given value, and convert it to the sql string needed for insertion into the database.
 java.lang.String SQLConverter.toSQLString(java.lang.Object inObject, AttributeType inAttributeType)
          Convert the object to a JDBC Character representation for the database.
 java.lang.String SQLConverter.toSQLDate(java.lang.Object inObject, AttributeType inAttributeType)
          Convert the object to the JDBC Date representaion for the database.
 java.lang.String SQLConverter.toSQLDate(java.util.Date inDate, AttributeType inAttributeType)
          Convert a java date into the JDBC date representaion for this database.
 java.lang.String SQLConverter.toSQLDate(java.lang.String inDate, AttributeType inAttributeType)
          Convert a string into the JDBC date representaion for this database.
 java.lang.String SQLConverter.toSQLInteger(java.lang.Object inInteger, AttributeType inAttributeType)
          Convert an object into the JDBC Integer representaion for this database.
 java.lang.String SQLConverter.toSQLDecimal(java.lang.Object inDecimal, AttributeType inAttributeType)
          Convert an object into the JDBC decimal representaion for this database.
 java.lang.String SimpleSQLConverter.toSQL(java.lang.Object inObject, AttributeType inAttributeType, int inJDBCType)
          Take the given type, of the given value, and convert it to the sql string needed for insertion into the database.
 java.lang.String SimpleSQLConverter.toSQLString(java.lang.Object inObject, AttributeType inAttributeType)
          Convert the object to a JDBC Character representation for the database.
 java.lang.String SimpleSQLConverter.toSQLDate(java.lang.Object inObject, AttributeType inAttributeType)
          Convert the object to the JDBC Date representaion for the database.
 java.lang.String SimpleSQLConverter.toSQLDate(java.util.Date inDate, AttributeType inAttributeType)
          Convert a java date into the JDBC date representaion for this database.
 java.lang.String SimpleSQLConverter.toSQLDate(java.lang.String inDate, AttributeType inAttributeType)
          Convert a string into the JDBC date representaion for this database.
 java.lang.String SimpleSQLConverter.toSQLInteger(java.lang.Object inInteger, AttributeType inAttributeType)
          Convert an object into the JDBC Integer representaion for this database.
 java.lang.String SimpleSQLConverter.toSQLDecimal(java.lang.Object inDecimal, AttributeType inAttributeType)
          Convert an object into the JDBC decimal representaion for this database.
 

Constructors in gistoolkit.datasources with parameters of type AttributeType
GISDataset(java.lang.String[] inAttributeNames, AttributeType[] inAttributeTypes)
          Create a new Dataset with the given number and type of attributes.
 

Uses of AttributeType in gistoolkit.datasources.db2spatialextender
 

Methods in gistoolkit.datasources.db2spatialextender with parameters of type AttributeType
 java.lang.String DB2SQLConverter.toSQLDate(java.util.Date inDate, AttributeType inAttributeType)
          Convert a java date into the JDBC date representaion for this database.
 

Uses of AttributeType in gistoolkit.datasources.memory
 

Methods in gistoolkit.datasources.memory that return AttributeType
 AttributeType[] MemoryDataSource.getAttributeTypes()
          Returns the list of attribute types for this data source.
 

Methods in gistoolkit.datasources.memory with parameters of type AttributeType
 void MemoryDataSource.setAttributeNamesAndTypes(java.lang.String[] inAttributeNames, AttributeType[] inAttributeTypes)
          Method to set the attributes, names and types for this data source.
 

Uses of AttributeType in gistoolkit.datasources.shapefile
 

Fields in gistoolkit.datasources.shapefile declared as AttributeType
protected  AttributeType[] DbaseFileStream.myFieldTypes
           
 

Methods in gistoolkit.datasources.shapefile that return AttributeType
 AttributeType[] DbaseFileStream.getFieldTypes()
          Returns the field names for the dbase file being read.
 

Methods in gistoolkit.datasources.shapefile with parameters of type AttributeType
static char ShapeFile.getFieldType(AttributeType inAttributeType)
          returns the dbf file type for the attribute sent in.
 

Constructors in gistoolkit.datasources.shapefile with parameters of type AttributeType
ShapeFileRecord(int inindex, Shape inShape, java.lang.Object[] inAttributes, java.lang.String[] inAttributeNames, AttributeType[] inAttributeTypes)
          Create a new Shape file record with the given index, shape attributes attributenames, and attributeTypes.
 

Uses of AttributeType in gistoolkit.display
 

Methods in gistoolkit.display that return AttributeType
 AttributeType[] Layer.getAttributeTypes()
          Retrieve the array of attribute types
 

Uses of AttributeType in gistoolkit.display.widgets
 

Methods in gistoolkit.display.widgets with parameters of type AttributeType
 AttributeEditor AttributePanel.getAttributeEditor(AttributeType inType, java.lang.Object inObject)
          Retrieve an appropriate attribute editor for this type
 

Uses of AttributeType in gistoolkit.features
 

Methods in gistoolkit.features that return AttributeType
 AttributeType[] Record.getAttributeTypes()
          Returns the AttributeTypes of the columns in this record.
 

Methods in gistoolkit.features with parameters of type AttributeType
 void Record.setAttributeTypes(AttributeType[] inAttributeTypes)
          Sets the AttributeTypes associated with the attributes.