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 intstatColumnCountprivate UUIDstatIDprivate UUIDstatRefIDprivate StatisticsstatStatprivate UUIDstatTableIDprivate java.lang.StringstatTypeprivate java.sql.TimestampstatUpdateTimeprivate booleanstatValid
-
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 intgetColumnCount()UUIDgetReferenceID()StatisticsgetStatistic()java.lang.StringgetStatType()UUIDgetTableUUID()java.sql.TimestampgetUpdateTimestamp()UUIDgetUUID()booleanisValid()java.lang.StringtoString()-
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:
toStringin classjava.lang.Object
-
-