Class StatisticsDescriptor
- java.lang.Object
-
- org.apache.derby.iapi.sql.dictionary.TupleDescriptor
-
- org.apache.derby.iapi.sql.dictionary.StatisticsDescriptor
-
public class StatisticsDescriptor extends TupleDescriptor
Implementation of StatisticsDescriptor.
-
-
Field Summary
Fields Modifier and Type Field Description private int
statColumnCount
private UUID
statID
private UUID
statRefID
private Statistics
statStat
private UUID
statTableID
private java.lang.String
statType
private java.sql.Timestamp
statUpdateTime
private boolean
statValid
-
Constructor Summary
Constructors Constructor Description StatisticsDescriptor(DataDictionary dd, UUID newUUID, UUID objectUUID, UUID tableUUID, java.lang.String type, Statistics stat, int colCount)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getColumnCount()
UUID
getReferenceID()
Statistics
getStatistic()
java.lang.String
getStatType()
UUID
getTableUUID()
java.sql.Timestamp
getUpdateTimestamp()
UUID
getUUID()
boolean
isValid()
java.lang.String
toString()
-
Methods inherited from class org.apache.derby.iapi.sql.dictionary.TupleDescriptor
getColumnDependableFinder, getDataDictionary, getDependableFinder, getDescriptorName, getDescriptorType, isPersistent, setDataDictionary
-
-
-
-
Field Detail
-
statID
private UUID statID
-
statRefID
private UUID statRefID
-
statTableID
private UUID statTableID
-
statUpdateTime
private java.sql.Timestamp statUpdateTime
-
statType
private java.lang.String statType
-
statValid
private boolean statValid
-
statStat
private Statistics statStat
-
statColumnCount
private int statColumnCount
-
-
Constructor Detail
-
StatisticsDescriptor
public StatisticsDescriptor(DataDictionary dd, UUID newUUID, UUID objectUUID, UUID tableUUID, java.lang.String type, Statistics stat, int colCount)
-
-
Method Detail
-
getUUID
public UUID getUUID()
-
getTableUUID
public UUID getTableUUID()
-
getReferenceID
public UUID getReferenceID()
-
getUpdateTimestamp
public java.sql.Timestamp getUpdateTimestamp()
-
getStatType
public java.lang.String getStatType()
-
isValid
public boolean isValid()
-
getStatistic
public Statistics getStatistic()
-
getColumnCount
public int getColumnCount()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-