Package com.luciad.format.gdf
Interface ILcdGDFLineFeature
- All Superinterfaces:
Cloneable
,ILcdBounded
,ILcdCloneable
,ILcdDataObject
,ILcdGDFFeature
,ILcdPointList
,ILcdPolyline
,ILcdShape
,Serializable
Represents a GDF line feature.
- Since:
- 5.1
-
Method Summary
Modifier and TypeMethodDescriptionReturns the first bounding ILcdGDFPointFeature of this feature, or null if none exists.Returns the second bounding ILcdGDFPointFeature of this feature, or null if none exists.boolean
Returns true if this feature is part of a split feature,false otherwise.
Methods inherited from interface com.luciad.shape.ILcdBounded
getBounds
Methods inherited from interface com.luciad.util.ILcdCloneable
clone
Methods inherited from interface com.luciad.datamodel.ILcdDataObject
getDataType, getValue, getValue, hasValue, hasValue, setValue, setValue
Methods inherited from interface com.luciad.format.gdf.ILcdGDFFeature
getAttribute, getAttributeCount, getFeatureCategory, getFeatureClass, getFeatureKey, getRelationship, getRelationshipCount, getSourceDescription
Methods inherited from interface com.luciad.shape.ILcdPointList
getPoint, getPointCount, getPointSFCT, getX, getY, getZ
Methods inherited from interface com.luciad.shape.ILcdShape
contains2D, contains2D, contains3D, contains3D, getFocusPoint
-
Method Details
-
isPartOfSplitFeature
boolean isPartOfSplitFeature()Returns true if this feature is part of a split feature,false otherwise.
- Returns:
- true if this feature is part of a split feature,
false otherwise.
-
getFromPoint
ILcdGDFPointFeature getFromPoint()Returns the first bounding ILcdGDFPointFeature of this feature, or null if none exists.- Returns:
- the first bounding ILcdGDFPointFeature of this feature.
-
getToPoint
ILcdGDFPointFeature getToPoint()Returns the second bounding ILcdGDFPointFeature of this feature, or null if none exists.- Returns:
- the second bounding ILcdGDFPointFeature of this feature.
-