com.esri.sde.sdk.client
Class SeTable.SeTableStats

java.lang.Object
  extended by com.esri.sde.sdk.client.SeTable.SeTableStats
Enclosing class:
SeTable

public static class SeTable.SeTableStats
extends java.lang.Object

SeTable inner class that retrieves the statistics information for a column.


Field Summary
static int SE_ALL_STATS
          Calculate all available statistics.
static int SE_AVERAGE_STATS
          Calculate the average value.
static int SE_BASIC_STATS
          Calculate the minimum, average, maximum, standard deviation and count.
static int SE_COUNT_STATS
          Count the number of rows.
static int SE_DISTINCT_STATS
          Count number of distinct values.
static int SE_MAX_STATS
          Calculate the maximum value.
static int SE_MIN_STATS
          Calculate the minimum value.
static int SE_STD_DEV_STATS
          Calculate the standard deviation.
 
Method Summary
 double getAverage()
          Returns the average value.
 int getCount()
          Returns the number of rows.
 int getDistinctType()
          Returns the type of distinct values.
 int[] getDistinctValueFrequencies()
          Returns the frequency of distinct values.
 java.util.Vector getDistinctValues()
          Returns distinct values.
 double getMax()
          Returns the maximum value.
 double getMin()
          Returns the minimum value.
 int getNumDistinct()
          Returns the number of distinct values.
 double getStdDev()
          Returns the standard deviation value.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

SE_MIN_STATS

public static final int SE_MIN_STATS
Calculate the minimum value.

See Also:
Constant Field Values

SE_AVERAGE_STATS

public static final int SE_AVERAGE_STATS
Calculate the average value.

See Also:
Constant Field Values

SE_MAX_STATS

public static final int SE_MAX_STATS
Calculate the maximum value.

See Also:
Constant Field Values

SE_STD_DEV_STATS

public static final int SE_STD_DEV_STATS
Calculate the standard deviation.

See Also:
Constant Field Values

SE_COUNT_STATS

public static final int SE_COUNT_STATS
Count the number of rows.

See Also:
Constant Field Values

SE_DISTINCT_STATS

public static final int SE_DISTINCT_STATS
Count number of distinct values.

See Also:
Constant Field Values

SE_BASIC_STATS

public static final int SE_BASIC_STATS
Calculate the minimum, average, maximum, standard deviation and count.

See Also:
Constant Field Values

SE_ALL_STATS

public static final int SE_ALL_STATS
Calculate all available statistics.

See Also:
Constant Field Values
Method Detail

getMin

public double getMin()
Returns the minimum value.

Returns:
double

getMax

public double getMax()
Returns the maximum value.

Returns:
double

getAverage

public double getAverage()
Returns the average value.

Returns:
double

getStdDev

public double getStdDev()
Returns the standard deviation value.

Returns:
double

getCount

public int getCount()
Returns the number of rows.

Returns:
int

getNumDistinct

public int getNumDistinct()
Returns the number of distinct values.

Returns:
int

getDistinctType

public int getDistinctType()
Returns the type of distinct values.

Returns:
int

getDistinctValueFrequencies

public int[] getDistinctValueFrequencies()
Returns the frequency of distinct values.

Returns:
int

getDistinctValues

public java.util.Vector getDistinctValues()
Returns distinct values.

Returns:
int