com.esri.arcgis.trackinganalyst
Interface enumColumnType

All Superinterfaces:
Serializable

public interface enumColumnType
extends Serializable

Indicates the type of column used in a data definition.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server. Requires Tracking Analyst Extension.


Field Summary
static int colBOOLEAN
          Boolean column type.
static int colDATE
          OLE date column type.
static int colDOUBLE
          Double column type.
static int colGEOMETRYPOINT
          ESRI geometry point column type.
static int colGEOMETRYPOLYGON
          ESRI geometry polygon column type.
static int colGEOMETRYPOLYLINE
          ESRI geometry polyline column type.
static int colINTEGER
          Integer column type.
static int colOBJECT
          Column type is a COM Object that supports IPersist stream.
static int colSTRING
          String column type with unlimited characters.
static int colSTRING1
          String column type with 1 character.
static int colSTRING16
          String column type with only 16 characters.
static int colSTRING256
          String column type with only 256 characters.
static int colSTRING32
          String column type with only 32 characters.
static int colSTRING4
          String column type with only 4 characters.
static int colSTRING512
          String column type with only 512 characters.
static int colSTRING64
          String column type with only 64 characters.
static int colSTRING8
          String column type with only 8 characters.
static int colTIMESTAMP
          Time value column type.
 

Field Detail

colINTEGER

static final int colINTEGER
Integer column type.

See Also:
Constant Field Values

colDOUBLE

static final int colDOUBLE
Double column type.

See Also:
Constant Field Values

colDATE

static final int colDATE
OLE date column type.

See Also:
Constant Field Values

colTIMESTAMP

static final int colTIMESTAMP
Time value column type. Value can be internal datetime format or string.

See Also:
Constant Field Values

colSTRING

static final int colSTRING
String column type with unlimited characters. Databases convert this to memo or blob columns.

See Also:
Constant Field Values

colSTRING64

static final int colSTRING64
String column type with only 64 characters. This is needed for databases to allow queries on fixed size columns.

See Also:
Constant Field Values

colSTRING256

static final int colSTRING256
String column type with only 256 characters. This is needed for databases to allow queries on fixed size columns.

See Also:
Constant Field Values

colSTRING512

static final int colSTRING512
String column type with only 512 characters. This is needed for databases to allow queries on fixed size columns.

See Also:
Constant Field Values

colBOOLEAN

static final int colBOOLEAN
Boolean column type.

See Also:
Constant Field Values

colOBJECT

static final int colOBJECT
Column type is a COM Object that supports IPersist stream.

See Also:
Constant Field Values

colSTRING1

static final int colSTRING1
String column type with 1 character. This is needed for databases to allow queries on fixed size columns.

See Also:
Constant Field Values

colSTRING4

static final int colSTRING4
String column type with only 4 characters. This is needed for databases to allow queries on fixed size columns.

See Also:
Constant Field Values

colSTRING8

static final int colSTRING8
String column type with only 8 characters. This is needed for databases to allow queries on fixed size columns.

See Also:
Constant Field Values

colSTRING16

static final int colSTRING16
String column type with only 16 characters. This is needed for databases to allow queries on fixed size columns.

See Also:
Constant Field Values

colSTRING32

static final int colSTRING32
String column type with only 32 characters. This is needed for databases to allow queries on fixed size columns.

See Also:
Constant Field Values

colGEOMETRYPOINT

static final int colGEOMETRYPOINT
ESRI geometry point column type.

See Also:
Constant Field Values

colGEOMETRYPOLYLINE

static final int colGEOMETRYPOLYLINE
ESRI geometry polyline column type.

See Also:
Constant Field Values

colGEOMETRYPOLYGON

static final int colGEOMETRYPOLYGON
ESRI geometry polygon column type.

See Also:
Constant Field Values