com.esri.sde.sdk.client
Class SeLayer.SeLayerStats

java.lang.Object
  extended by com.esri.sde.sdk.client.SeLayer.SeLayerStats
Enclosing class:
SeLayer

public static class SeLayer.SeLayerStats
extends java.lang.Object

SeLayer inner class that obtains the statistics for a layer.


Method Summary
 int getAreas()
          Returns the number of area features in the layer.
 double getAverageArea()
          Returns the average area/feature.
 double getAveragelength()
          Returns the average length/feature.
 double getAveragePoints()
          Returns the average number of points/feature.
 SeExtent getBounds()
          Returns the layer extent.
 java.util.Date getLastModified()
          Returns the date that the layer was last modified.
 SeObjectId getLayerId()
          Returns the layer id.
 int getLines()
          Returns the number of line features in the layer.
 double getMaxArea()
          Returns the maximum feature area.
 int getMaxFid()
          Returns the maximum fid value in the layer.
 double getMaxLength()
          Returns the maximum linear feature length.
 int getMaxPoints()
          Returns the maximum number of points in layer features.
 double getMinArea()
          Returns the minimum feature area.
 int getMinFid()
          Returns the minimum fid value in the layer.
 double getMinLength()
          Returns the minimum linear feature length.
 int getMinPoints()
          Returns the minimum number of points in layer features.
 int getMultiAreas()
          Returns the number of multiarea features in the layer.
 int getMultiLines()
          Returns the number of multi-line features in the layer.
 int getMultiPoints()
          Returns the number of multipoint features in layer.
 int getMultiSimpleLines()
          Returns the number of multi simple line features in the layer.
 int getNils()
          Returns the number of nil features in the layer.
 int getPoints()
          Returns the number of point features in the layer.
 int getSimpleLines()
          Returns the number of simple line features in the layer.
 int getTotFeatures()
          Returns the total number of features in the layer.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getLayerId

public SeObjectId getLayerId()
Returns the layer id.

Returns:
SeObjectId

getNils

public int getNils()
Returns the number of nil features in the layer.

Returns:
int

getPoints

public int getPoints()
Returns the number of point features in the layer.

Returns:
int

getMultiPoints

public int getMultiPoints()
Returns the number of multipoint features in layer.

Returns:
int

getLines

public int getLines()
Returns the number of line features in the layer.

Returns:
int

getMultiLines

public int getMultiLines()
Returns the number of multi-line features in the layer.

Returns:
int

getSimpleLines

public int getSimpleLines()
Returns the number of simple line features in the layer.

Returns:
int

getMultiSimpleLines

public int getMultiSimpleLines()
Returns the number of multi simple line features in the layer.

Returns:
int

getAreas

public int getAreas()
Returns the number of area features in the layer.

Returns:
int

getMultiAreas

public int getMultiAreas()
Returns the number of multiarea features in the layer.

Returns:
int

getTotFeatures

public int getTotFeatures()
Returns the total number of features in the layer.

Returns:
int

getBounds

public SeExtent getBounds()
Returns the layer extent.

Returns:
SeExtent

getLastModified

public java.util.Date getLastModified()
Returns the date that the layer was last modified.

Returns:
java.util.Date

getMinFid

public int getMinFid()
Returns the minimum fid value in the layer.

Returns:
int

getMaxFid

public int getMaxFid()
Returns the maximum fid value in the layer.

Returns:
int

getMinPoints

public int getMinPoints()
Returns the minimum number of points in layer features.

Returns:
int

getMaxPoints

public int getMaxPoints()
Returns the maximum number of points in layer features.

Returns:
int

getMinArea

public double getMinArea()
Returns the minimum feature area.

Returns:
double

getMaxArea

public double getMaxArea()
Returns the maximum feature area.

Returns:
double

getMinLength

public double getMinLength()
Returns the minimum linear feature length.

Returns:
double

getMaxLength

public double getMaxLength()
Returns the maximum linear feature length.

Returns:
double

getAveragePoints

public double getAveragePoints()
Returns the average number of points/feature.

Returns:
double

getAverageArea

public double getAverageArea()
Returns the average area/feature.

Returns:
double

getAveragelength

public double getAveragelength()
Returns the average length/feature.

Returns:
double