com.esri.arcgis.geometry
Interface esriShapeImportFlags

All Superinterfaces:
Serializable

public interface esriShapeImportFlags
extends Serializable

Flags used to control the behavior of IESRIShape2 import methods.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Supported Platforms

Windows, Solaris, Linux


Field Summary
static int esriShapeImportAttach
          Attaches the geometry directly to the input shapefile buffer.
static int esriShapeImportDefaults
          Uses default import behavior: performs byte swapping if the current platform is Big-Endian (Sun, Motorola, etc.), assumes the geometry being imported is simple, and does not attach to the import buffer.
static int esriShapeImportNonTrusted
          Does not assume that the input shapefile buffer represents a topologically correct geometry.
static int esriShapeImportNoSwap
          Assumes shapefile standard byte ordering, regardless of current platform architecture.
 

Field Detail

esriShapeImportDefaults

static final int esriShapeImportDefaults
Uses default import behavior: performs byte swapping if the current platform is Big-Endian (Sun, Motorola, etc.), assumes the geometry being imported is simple, and does not attach to the import buffer.

See Also:
Constant Field Values

esriShapeImportNoSwap

static final int esriShapeImportNoSwap
Assumes shapefile standard byte ordering, regardless of current platform architecture. The default is to perform byte swapping if the current platform architecture is Big-Endian.

See Also:
Constant Field Values

esriShapeImportNonTrusted

static final int esriShapeImportNonTrusted
Does not assume that the input shapefile buffer represents a topologically correct geometry.

See Also:
Constant Field Values

esriShapeImportAttach

static final int esriShapeImportAttach
Attaches the geometry directly to the input shapefile buffer. The default is to copy data from the buffer.

See Also:
Constant Field Values