Uses of Class
com.vividsolutions.jump.feature.AttributeType
-
Packages that use AttributeType Package Description com.vividsolutions.jump.datastore com.vividsolutions.jump.datastore.jdbc com.vividsolutions.jump.datastore.postgis com.vividsolutions.jump.datastore.spatialdatabases 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.io.geojson com.vividsolutions.jump.workbench.ui com.vividsolutions.jump.workbench.ui.plugin The built-in JUMP "plug-ins" (code modules that can be assigned to buttons and menu items).de.fho.jump.pirol.ui.panels de.fho.jump.pirol.utilities.attributes org.openjump.core.apitools org.openjump.core.feature org.openjump.core.ui.plugin.tools.aggregate org.openjump.core.ui.plugin.tools.statistics org.openjump.sigle.plugin.joinTable -
-
Uses of AttributeType in com.vividsolutions.jump.datastore
Methods in com.vividsolutions.jump.datastore that return AttributeType Modifier and Type Method Description static AttributeType
SQLUtil. getAttributeType(int sqlType, String dataTypeName)
Returns OpenJUMP attributeType from sql type and datatype name. -
Uses of AttributeType in com.vividsolutions.jump.datastore.jdbc
Methods in com.vividsolutions.jump.datastore.jdbc that return AttributeType Modifier and Type Method Description AttributeType
ValueConverter. getType()
AttributeType
ValueConverterFactory.BooleanConverter. getType()
AttributeType
ValueConverterFactory.DateConverter. getType()
AttributeType
ValueConverterFactory.DoubleConverter. getType()
AttributeType
ValueConverterFactory.IntegerConverter. getType()
AttributeType
ValueConverterFactory.LongConverter. getType()
AttributeType
ValueConverterFactory.ObjectConverter. getType()
AttributeType
ValueConverterFactory.StringConverter. getType()
-
Uses of AttributeType in com.vividsolutions.jump.datastore.postgis
Methods in com.vividsolutions.jump.datastore.postgis with parameters of type AttributeType Modifier and Type Method Description protected String
PostgisDSMetadata. getDbTypeName(AttributeType type)
-
Uses of AttributeType in com.vividsolutions.jump.datastore.spatialdatabases
Methods in com.vividsolutions.jump.datastore.spatialdatabases with parameters of type AttributeType Modifier and Type Method Description protected String
SpatialDatabasesDSMetadata. getDbTypeName(AttributeType type)
Return standard SQL data type for OpenJUMP AttributeType. -
Uses of AttributeType in com.vividsolutions.jump.feature
Fields in com.vividsolutions.jump.feature declared as AttributeType Modifier and Type Field Description static AttributeType
AttributeType. BIGDECIMAL
static AttributeType
AttributeType. BIGINT
static AttributeType
AttributeType. BIT
static AttributeType
AttributeType. BOOLEAN
static AttributeType
AttributeType. CHAR
static AttributeType
AttributeType. DATE
static AttributeType
AttributeType. DECIMAL
static AttributeType
AttributeType. DOUBLE
static AttributeType
AttributeType. FLOAT
static AttributeType
AttributeType. GEOMETRY
static AttributeType
AttributeType. INTEGER
static AttributeType
AttributeType. LONG
static AttributeType
AttributeType. LONGVARCHAR
static AttributeType
AttributeType. NUMERIC
static AttributeType
AttributeType. OBJECT
static AttributeType
AttributeType. REAL
static AttributeType
AttributeType. SMALLINT
static AttributeType
AttributeType. STRING
static AttributeType
AttributeType. TEXT
static AttributeType
AttributeType. TIME
static AttributeType
AttributeType. TIMESTAMP
static AttributeType
AttributeType. TINYINT
static AttributeType
AttributeType. VARCHAR
Fields in com.vividsolutions.jump.feature with type parameters of type AttributeType Modifier and Type Field Description protected List<AttributeType>
FeatureSchema. attributeTypes
Methods in com.vividsolutions.jump.feature that return AttributeType Modifier and Type Method Description AttributeType
FeatureSchema. getAttributeType(int attributeIndex)
Returns whether the attribute at the given zero-based index is a string, integer, double, etc.AttributeType
FeatureSchema. getAttributeType(String attributeName)
Returns whether the attribute with the given name (case-sensitive) is a string, integer, double, etc.static AttributeType
AttributeType. toAttributeType(Class<?> javaClass)
Gets the first attribute type related with a given class.static AttributeType
AttributeType. toAttributeType(String name)
Converts a type name to an AttributeType.Methods in com.vividsolutions.jump.feature that return types with arguments of type AttributeType Modifier and Type Method Description static Collection<AttributeType>
AttributeType. allTypes()
static Collection<AttributeType>
AttributeType. basicTypes()
Methods in com.vividsolutions.jump.feature with parameters of type AttributeType Modifier and Type Method Description void
FeatureSchema. addAttribute(String attributeName, AttributeType attributeType)
Adds an attribute with the given case-sensitive name.void
FeatureSchema. addDynamicAttribute(String attributeName, AttributeType attributeType, Operation operation)
Add a dynamic attribute to this FeatureSchema A dynamic attribute is a readOnly attribute which is dynamically evaluated on demand.void
FeatureSchema. addExternalPrimaryKey(String attributeName, AttributeType attributeType)
Add an attribute containing an external identifier.static boolean
AttributeType. areCompatibleTypes(AttributeType attrType1, AttributeType attrType2)
Checks if two attribute types are compatible.static boolean
AttributeType. isBoolean(AttributeType type)
Checks if an attribute type is assignable to a booleanstatic boolean
AttributeType. isDate(AttributeType type)
Checks if an attribute type is a datestatic boolean
AttributeType. isNumeric(AttributeType type)
Checks if an attribute type is numericstatic boolean
AttributeType. isNumericWithoutDecimal(AttributeType type)
Checks if an attribute type is numeric without any decimalstatic boolean
AttributeType. isString(AttributeType type)
Checks if an attribute type is assignable to a Stringvoid
FlexibleFeatureSchema. setAttributeType(int attributeIndex, AttributeType type)
void
FlexibleFeatureSchema. setAttributeType(String name, AttributeType type)
-
Uses of AttributeType in com.vividsolutions.jump.io
Methods in com.vividsolutions.jump.io that return AttributeType Modifier and Type Method Description AttributeType
ColumnDescription. getType()
Returns the [JCS] type of this column cf.Methods in com.vividsolutions.jump.io with parameters of type AttributeType Modifier and Type Method Description void
ColumnDescription. setType(AttributeType t)
Sets the [JCS] type of this column -
Uses of AttributeType in com.vividsolutions.jump.io.geojson
Fields in com.vividsolutions.jump.io.geojson declared as AttributeType Modifier and Type Field Description static AttributeType
GeoJSONFeatureCollectionWrapper. ATTRIBUTETYPE_NULL
Methods in com.vividsolutions.jump.io.geojson that return AttributeType Modifier and Type Method Description static AttributeType
GeoJSONFeatureCollectionWrapper. toAttributeType(Object value)
-
Uses of AttributeType in com.vividsolutions.jump.workbench.ui
Methods in com.vividsolutions.jump.workbench.ui that return AttributeType Modifier and Type Method Description AttributeType
SchemaTableModel.Field. getType()
Methods in com.vividsolutions.jump.workbench.ui with parameters of type AttributeType Modifier and Type Method Description void
SchemaTableModel.Field. setType(AttributeType type)
-
Uses of AttributeType in com.vividsolutions.jump.workbench.ui.plugin
Methods in com.vividsolutions.jump.workbench.ui.plugin that return AttributeType Modifier and Type Method Description AttributeType
ViewSchemaPlugIn.Attribute. getType()
Methods in com.vividsolutions.jump.workbench.ui.plugin with parameters of type AttributeType Modifier and Type Method Description Object
ViewSchemaPlugIn. convert(Boolean from, AttributeType toType, String attributeName, boolean forcingInvalidConversionsToNull)
Object
ViewSchemaPlugIn. convert(Double from, AttributeType toType, String attributeName, boolean forcingInvalidConversionsToNull)
Object
ViewSchemaPlugIn. convert(Integer from, AttributeType toType, String attributeName, boolean forcingInvalidConversionsToNull)
Object
ViewSchemaPlugIn. convert(Long from, AttributeType toType, String attributeName, boolean forcingInvalidConversionsToNull)
Object
ViewSchemaPlugIn. convert(Object from, AttributeType fromType, AttributeType toType, String attributeName, boolean forcingInvalidConversionsToNull)
Object
ViewSchemaPlugIn. convert(Object from, AttributeType toType, String attributeName, boolean forcingInvalidConversionsToNull)
Object
ViewSchemaPlugIn. convert(String from, AttributeType toType, String attributeName, boolean forcingInvalidConversionsToNull)
Object
ViewSchemaPlugIn. convert(Date from, AttributeType toType, String attributeName, boolean forcingInvalidConversionsToNull)
Object
ViewSchemaPlugIn. convert(org.locationtech.jts.geom.Geometry from, AttributeType toType, String attributeName, boolean forcingInvalidConversionsToNull)
void
ViewSchemaPlugIn.Attribute. setType(AttributeType type)
-
Uses of AttributeType in de.fho.jump.pirol.ui.panels
Fields in de.fho.jump.pirol.ui.panels declared as AttributeType Modifier and Type Field Description protected AttributeType[]
NewAttributePanel. onlyTypes
Constructors in de.fho.jump.pirol.ui.panels with parameters of type AttributeType Constructor Description 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 Modifier and Type Field Description protected AttributeType
AttributeInfo. attributeType
Methods in de.fho.jump.pirol.utilities.attributes that return AttributeType Modifier and Type Method Description AttributeType
AttributeInfo. getAttributeType()
Methods in de.fho.jump.pirol.utilities.attributes with parameters of type AttributeType Modifier and Type Method Description void
AttributeInfo. setAttributeType(AttributeType attributeType)
Constructors in de.fho.jump.pirol.utilities.attributes with parameters of type AttributeType Constructor Description AttributeInfo(AttributeType attributeType, String attributeName)
AttributeInfo(AttributeType attributeType, String attributeName, Object nullValue)
-
Uses of AttributeType in org.openjump.core.apitools
Methods in org.openjump.core.apitools with parameters of type AttributeType Modifier and Type Method Description static PirolFeatureCollection
FeatureCollectionTools. addAttributeToFeatureCollection(FeatureCollection fc, String attr, AttributeType at, Object defaultVal)
Method to add a new attribute to an existing FeatureCollection.static PirolFeatureCollection
FeatureCollectionTools. addAttributeToFeatureCollection(FeatureCollection fc, String attr, AttributeType at, Object defaultVal, boolean clearOldFeatureCollection)
Method to add a new attribute to an existing FeatureCollection.PirolFeatureCollection
FeatureCollectionTools. addAttributeToFeatureCollection(String attr, AttributeType at, Object defaultVal)
static AttributeInfo[]
FeatureSchemaTools. getAttributesWithTypes(FeatureSchema fs, AttributeType[] allowedTypes)
Extracts information of all attributes with one of the given types from the given FeatureSchemastatic boolean
FeatureCollectionTools. isAttributeTypeNumeric(AttributeType at)
-
Uses of AttributeType in org.openjump.core.feature
Methods in org.openjump.core.feature with parameters of type AttributeType Modifier and Type Method Description abstract Operation
AttributeOperationFactory. createOperation(AttributeType type, String expression)
Operation
BeanshellAttributeOperationFactory. createOperation(AttributeType type, String expression)
Constructors in org.openjump.core.feature with parameters of type AttributeType Constructor Description BeanshellAttributeOperation(PlugInContext context, AttributeType type, String bshExpression)
-
Uses of AttributeType in org.openjump.core.ui.plugin.tools.aggregate
Methods in org.openjump.core.ui.plugin.tools.aggregate that return AttributeType Modifier and Type Method Description AttributeType
Aggregator. getOutputAttributeType()
Methods in org.openjump.core.ui.plugin.tools.aggregate with parameters of type AttributeType Modifier and Type Method Description static Map<String,Aggregator<?>>
Aggregators. getAggregators(AttributeType type)
Returns aggregators accepting a certain type of values as input. -
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 Modifier and Type Method Description protected void
StatisticOverViewTableModel. addRow(String attrName, AttributeType type, Double minVal, Object mean, Double maxVal, Double deviation, Double sum)
-
Uses of AttributeType in org.openjump.sigle.plugin.joinTable
Methods in org.openjump.sigle.plugin.joinTable that return AttributeType Modifier and Type Method Description AttributeType
JoinTable. getFieldType(int indice)
-