Index

Package: biz.hammurapi.metrics.persistent

Class MetricsEngine

Methods
MethodDescription
public void <init>( biz.hammurapi.sql.SQLProcessor processor ) Constructor
public int deleteKindred( )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes all records from ${METRICS.KINDRED}
public int deleteKindred( int Ancestor, int Descendant )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes by primary key from ${METRICS.KINDRED}
public int deleteMeasurement( )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes all records from ${METRICS.MEASUREMENT}
public int deleteMeasurement( int Id )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes by primary key from ${METRICS.MEASUREMENT}
public int deleteMetric( )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes all records from ${METRICS.METRIC}
public int deleteMetric( int Id )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes by primary key from ${METRICS.METRIC}
public int deleteMetricByParent( Integer Parent )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes rows from ${METRICS.METRIC} by foreign key FK_METRIC_SQLC$PARENT columns value(s): PARENT
public int deleteMetricNameEQ( Integer Parent, String Name )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes row(s) with equal index value(s): PARENT, NAME
public int deleteSlice( )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes all records from ${METRICS.SLICE}
public int deleteSlice( int Id )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes by primary key from ${METRICS.SLICE}
public int deleteSliceByMetric( int MetricId )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes rows from ${METRICS.SLICE} by foreign key FK_SLICE_SQLC$METRIC columns value(s): METRIC_ID
public int deleteSliceTimeToLE( long TimeTo )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes row(s) with less or equal index value(s): TIME_TO
public java.util.Collection getActiveMetrics( int p1, long p2, long p3 ) Executes query, returns database backed collection with elements of type of the first column.
public java.util.Collection getActiveMetrics( int p1, long p2, long p3, biz.hammurapi.convert.Converter converter ) Executes query, returns database backed collection with elements of type of the first column. If converter is not null then it converts elements.
public java.util.Collection getActiveMetrics( int p1, long p2, long p3, Class targetClass ) Executes query, returns database backed collection with elements of type of the first column. If target class is not null then elements are instances of target class created from the first column values.
public java.util.Collection getActiveMetrics( int p1, long p2, long p3, java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with values from the first column and returns the collection.
public java.util.Collection getActiveMetrics( int p1, long p2, long p3, java.util.Collection receiver, biz.hammurapi.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with values from the first column and returns the collection. Elements get converted by the converter if it is not null.
public java.util.Collection getActiveMetrics( int p1, long p2, long p3, java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with values from the first column and returns the collection. If target class is not null instances of target class are instantiated from first column values
public ActualPeriod getActualPeriod( int p1, long p2, long p3 )  throws java.sql.SQLExceptionExecutes query and returns single object.
public ActualPeriod getActualPeriod( int p1, long p2, long p3, Class targetClass )  throws java.sql.SQLExceptionExecutes query and returns single object of target class type. Target class must be return type compatible.
public java.util.Collection getKindred( ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Kindred. Selects all rows from ${METRICS.KINDRED}
public java.util.Collection getKindred( biz.hammurapi.convert.Converter converter ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Kindred. If converter is not null then elements will be results of conversion.Selects all rows from ${METRICS.KINDRED}
public java.util.Collection getKindred( Class targetClass ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Kindred. If targetClass is not null then elements will be of targetClass typeSelects all rows from ${METRICS.KINDRED}
public java.util.Collection getKindred( java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Kindred and returns populated collection. Selects all rows from ${METRICS.KINDRED}
public java.util.Collection getKindred( java.util.Collection receiver, biz.hammurapi.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Kindred and returns populated collection. If converter is not null then elements will be results of conversion. Selects all rows from ${METRICS.KINDRED}
public java.util.Collection getKindred( java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Kindred and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects all rows from ${METRICS.KINDRED}
public Kindred getKindred( int Ancestor, int Descendant )  throws java.sql.SQLExceptionExecutes query and returns single object. Selects by primary key from ${METRICS.KINDRED}
public Kindred getKindred( int Ancestor, int Descendant, Class targetClass )  throws java.sql.SQLExceptionExecutes query and returns single object of target class type. Target class must be return type compatible. Selects by primary key from ${METRICS.KINDRED}
public java.util.Collection getMeasurement( ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Measurement. Selects all rows from ${METRICS.MEASUREMENT}
public java.util.Collection getMeasurement( biz.hammurapi.convert.Converter converter ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Measurement. If converter is not null then elements will be results of conversion.Selects all rows from ${METRICS.MEASUREMENT}
public java.util.Collection getMeasurement( Class targetClass ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Measurement. If targetClass is not null then elements will be of targetClass typeSelects all rows from ${METRICS.MEASUREMENT}
public java.util.Collection getMeasurement( java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Measurement and returns populated collection. Selects all rows from ${METRICS.MEASUREMENT}
public java.util.Collection getMeasurement( java.util.Collection receiver, biz.hammurapi.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Measurement and returns populated collection. If converter is not null then elements will be results of conversion. Selects all rows from ${METRICS.MEASUREMENT}
public java.util.Collection getMeasurement( java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Measurement and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects all rows from ${METRICS.MEASUREMENT}
public Measurement getMeasurement( int Id )  throws java.sql.SQLExceptionExecutes query and returns single object. Selects by primary key from ${METRICS.MEASUREMENT}
public Measurement getMeasurement( int Id, Class targetClass )  throws java.sql.SQLExceptionExecutes query and returns single object of target class type. Target class must be return type compatible. Selects by primary key from ${METRICS.MEASUREMENT}
public java.util.Collection getMetric( ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Metric. Selects all rows from ${METRICS.METRIC}
public java.util.Collection getMetric( biz.hammurapi.convert.Converter converter ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Metric. If converter is not null then elements will be results of conversion.Selects all rows from ${METRICS.METRIC}
public java.util.Collection getMetric( Class targetClass ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Metric. If targetClass is not null then elements will be of targetClass typeSelects all rows from ${METRICS.METRIC}
public java.util.Collection getMetric( java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Metric and returns populated collection. Selects all rows from ${METRICS.METRIC}
public java.util.Collection getMetric( java.util.Collection receiver, biz.hammurapi.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Metric and returns populated collection. If converter is not null then elements will be results of conversion. Selects all rows from ${METRICS.METRIC}
public java.util.Collection getMetric( java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Metric and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects all rows from ${METRICS.METRIC}
public Metric getMetric( int Id )  throws java.sql.SQLExceptionExecutes query and returns single object. Selects by primary key from ${METRICS.METRIC}
public Metric getMetric( int Id, Class targetClass )  throws java.sql.SQLExceptionExecutes query and returns single object of target class type. Target class must be return type compatible. Selects by primary key from ${METRICS.METRIC}
public java.util.Collection getMetricByParent( Integer Parent ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Metric. Selects rows from ${METRICS.METRIC} by foreign key FK_METRIC_SQLC$PARENT columns value(s): PARENT
public java.util.Collection getMetricByParent( Integer Parent, biz.hammurapi.convert.Converter converter ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Metric. If converter is not null then elements will be results of conversion.Selects rows from ${METRICS.METRIC} by foreign key FK_METRIC_SQLC$PARENT columns value(s): PARENT
public java.util.Collection getMetricByParent( Integer Parent, Class targetClass ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Metric. If targetClass is not null then elements will be of targetClass typeSelects rows from ${METRICS.METRIC} by foreign key FK_METRIC_SQLC$PARENT columns value(s): PARENT
public java.util.Collection getMetricByParent( Integer Parent, java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Metric and returns populated collection. Selects rows from ${METRICS.METRIC} by foreign key FK_METRIC_SQLC$PARENT columns value(s): PARENT
public java.util.Collection getMetricByParent( Integer Parent, java.util.Collection receiver, biz.hammurapi.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Metric and returns populated collection. If converter is not null then elements will be results of conversion. Selects rows from ${METRICS.METRIC} by foreign key FK_METRIC_SQLC$PARENT columns value(s): PARENT
public java.util.Collection getMetricByParent( Integer Parent, java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Metric and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects rows from ${METRICS.METRIC} by foreign key FK_METRIC_SQLC$PARENT columns value(s): PARENT
public Number getMetricId( int p1, String p2 )  throws java.sql.SQLExceptionExecutes query and returns value of the first (the only) column in the first row.
public java.util.Collection getMetricNameEQ( Integer Parent, String Name ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Metric. Selects row(s) with equal index value(s): PARENT, NAME
public java.util.Collection getMetricNameEQ( Integer Parent, String Name, biz.hammurapi.convert.Converter converter ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Metric. If converter is not null then elements will be results of conversion.Selects row(s) with equal index value(s): PARENT, NAME
public java.util.Collection getMetricNameEQ( Integer Parent, String Name, Class targetClass ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Metric. If targetClass is not null then elements will be of targetClass typeSelects row(s) with equal index value(s): PARENT, NAME
public java.util.Collection getMetricNameEQ( Integer Parent, String Name, java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Metric and returns populated collection. Selects row(s) with equal index value(s): PARENT, NAME
public java.util.Collection getMetricNameEQ( Integer Parent, String Name, java.util.Collection receiver, biz.hammurapi.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Metric and returns populated collection. If converter is not null then elements will be results of conversion. Selects row(s) with equal index value(s): PARENT, NAME
public java.util.Collection getMetricNameEQ( Integer Parent, String Name, java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Metric and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects row(s) with equal index value(s): PARENT, NAME
public java.util.Collection getMetricsToNormalize( ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Metric.
public java.util.Collection getMetricsToNormalize( biz.hammurapi.convert.Converter converter ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Metric. If converter is not null then elements will be results of conversion.
public java.util.Collection getMetricsToNormalize( Class targetClass ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Metric. If targetClass is not null then elements will be of targetClass type
public java.util.Collection getMetricsToNormalize( java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Metric and returns populated collection.
public java.util.Collection getMetricsToNormalize( java.util.Collection receiver, biz.hammurapi.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Metric and returns populated collection. If converter is not null then elements will be results of conversion.
public java.util.Collection getMetricsToNormalize( java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Metric and returns populated collection. If targetClass is not null then elements will be of targetClass type.
public java.util.Collection getOrderedMetrics( int p1 ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Metric.
public java.util.Collection getOrderedMetrics( int p1, biz.hammurapi.convert.Converter converter ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Metric. If converter is not null then elements will be results of conversion.
public java.util.Collection getOrderedMetrics( int p1, Class targetClass ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Metric. If targetClass is not null then elements will be of targetClass type
public java.util.Collection getOrderedMetrics( int p1, java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Metric and returns populated collection.
public java.util.Collection getOrderedMetrics( int p1, java.util.Collection receiver, biz.hammurapi.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Metric and returns populated collection. If converter is not null then elements will be results of conversion.
public java.util.Collection getOrderedMetrics( int p1, java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Metric and returns populated collection. If targetClass is not null then elements will be of targetClass type.
public java.util.Collection getOrderedRootMetrics( ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Metric.
public java.util.Collection getOrderedRootMetrics( biz.hammurapi.convert.Converter converter ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Metric. If converter is not null then elements will be results of conversion.
public java.util.Collection getOrderedRootMetrics( Class targetClass ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Metric. If targetClass is not null then elements will be of targetClass type
public java.util.Collection getOrderedRootMetrics( java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Metric and returns populated collection.
public java.util.Collection getOrderedRootMetrics( java.util.Collection receiver, biz.hammurapi.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Metric and returns populated collection. If converter is not null then elements will be results of conversion.
public java.util.Collection getOrderedRootMetrics( java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Metric and returns populated collection. If targetClass is not null then elements will be of targetClass type.
public java.util.Collection getOrderedSlices( int p1 ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Slice.
public java.util.Collection getOrderedSlices( int p1, biz.hammurapi.convert.Converter converter ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Slice. If converter is not null then elements will be results of conversion.
public java.util.Collection getOrderedSlices( int p1, Class targetClass ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Slice. If targetClass is not null then elements will be of targetClass type
public java.util.Collection getOrderedSlices( int p1, java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Slice and returns populated collection.
public java.util.Collection getOrderedSlices( int p1, java.util.Collection receiver, biz.hammurapi.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Slice and returns populated collection. If converter is not null then elements will be results of conversion.
public java.util.Collection getOrderedSlices( int p1, java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Slice and returns populated collection. If targetClass is not null then elements will be of targetClass type.
public Number getRootMetricId( String p1 )  throws java.sql.SQLExceptionExecutes query and returns value of the first (the only) column in the first row.
public java.util.Collection getSlice( ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Slice. Selects all rows from ${METRICS.SLICE}
public java.util.Collection getSlice( biz.hammurapi.convert.Converter converter ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Slice. If converter is not null then elements will be results of conversion.Selects all rows from ${METRICS.SLICE}
public java.util.Collection getSlice( Class targetClass ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Slice. If targetClass is not null then elements will be of targetClass typeSelects all rows from ${METRICS.SLICE}
public java.util.Collection getSlice( java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Slice and returns populated collection. Selects all rows from ${METRICS.SLICE}
public java.util.Collection getSlice( java.util.Collection receiver, biz.hammurapi.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Slice and returns populated collection. If converter is not null then elements will be results of conversion. Selects all rows from ${METRICS.SLICE}
public java.util.Collection getSlice( java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Slice and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects all rows from ${METRICS.SLICE}
public Slice getSlice( int Id )  throws java.sql.SQLExceptionExecutes query and returns single object. Selects by primary key from ${METRICS.SLICE}
public Slice getSlice( int Id, Class targetClass )  throws java.sql.SQLExceptionExecutes query and returns single object of target class type. Target class must be return type compatible. Selects by primary key from ${METRICS.SLICE}
public java.util.Collection getSlice( int p1, long p2, long p3 ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Slice.
public java.util.Collection getSlice( int p1, long p2, long p3, biz.hammurapi.convert.Converter converter ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Slice. If converter is not null then elements will be results of conversion.
public java.util.Collection getSlice( int p1, long p2, long p3, Class targetClass ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Slice. If targetClass is not null then elements will be of targetClass type
public java.util.Collection getSlice( int p1, long p2, long p3, java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Slice and returns populated collection.
public java.util.Collection getSlice( int p1, long p2, long p3, java.util.Collection receiver, biz.hammurapi.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Slice and returns populated collection. If converter is not null then elements will be results of conversion.
public java.util.Collection getSlice( int p1, long p2, long p3, java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Slice and returns populated collection. If targetClass is not null then elements will be of targetClass type.
public java.util.Collection getSliceByMetric( int MetricId ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Slice. Selects rows from ${METRICS.SLICE} by foreign key FK_SLICE_SQLC$METRIC columns value(s): METRIC_ID
public java.util.Collection getSliceByMetric( int MetricId, biz.hammurapi.convert.Converter converter ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Slice. If converter is not null then elements will be results of conversion.Selects rows from ${METRICS.SLICE} by foreign key FK_SLICE_SQLC$METRIC columns value(s): METRIC_ID
public java.util.Collection getSliceByMetric( int MetricId, Class targetClass ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Slice. If targetClass is not null then elements will be of targetClass typeSelects rows from ${METRICS.SLICE} by foreign key FK_SLICE_SQLC$METRIC columns value(s): METRIC_ID
public java.util.Collection getSliceByMetric( int MetricId, java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Slice and returns populated collection. Selects rows from ${METRICS.SLICE} by foreign key FK_SLICE_SQLC$METRIC columns value(s): METRIC_ID
public java.util.Collection getSliceByMetric( int MetricId, java.util.Collection receiver, biz.hammurapi.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Slice and returns populated collection. If converter is not null then elements will be results of conversion. Selects rows from ${METRICS.SLICE} by foreign key FK_SLICE_SQLC$METRIC columns value(s): METRIC_ID
public java.util.Collection getSliceByMetric( int MetricId, java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Slice and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects rows from ${METRICS.SLICE} by foreign key FK_SLICE_SQLC$METRIC columns value(s): METRIC_ID
public java.util.Collection getSliceTimeToLE( long TimeTo ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Slice. Selects row(s) with less or equal index value(s) ordered by index. Columns: TIME_TO
public java.util.Collection getSliceTimeToLE( long TimeTo, biz.hammurapi.convert.Converter converter ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Slice. If converter is not null then elements will be results of conversion.Selects row(s) with less or equal index value(s) ordered by index. Columns: TIME_TO
public java.util.Collection getSliceTimeToLE( long TimeTo, Class targetClass ) Executes query, returns database backed collection with elements of type biz.hammurapi.metrics.persistent.Slice. If targetClass is not null then elements will be of targetClass typeSelects row(s) with less or equal index value(s) ordered by index. Columns: TIME_TO
public java.util.Collection getSliceTimeToLE( long TimeTo, java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Slice and returns populated collection. Selects row(s) with less or equal index value(s) ordered by index. Columns: TIME_TO
public java.util.Collection getSliceTimeToLE( long TimeTo, java.util.Collection receiver, biz.hammurapi.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Slice and returns populated collection. If converter is not null then elements will be results of conversion. Selects row(s) with less or equal index value(s) ordered by index. Columns: TIME_TO
public java.util.Collection getSliceTimeToLE( long TimeTo, java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type biz.hammurapi.metrics.persistent.Slice and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects row(s) with less or equal index value(s) ordered by index. Columns: TIME_TO
public int insertKindred( int Ancestor, int Descendant )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into ${METRICS.KINDRED}
public int insertKindred( Kindred rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into ${METRICS.KINDRED}
public int insertMeasurement( int Id, int SliceId, double MeasurementValue, long MeasurementTime )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into ${METRICS.MEASUREMENT}
public int insertMeasurement( Measurement rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into ${METRICS.MEASUREMENT}
public int insertMetric( int Id, String Name, Integer Parent )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into ${METRICS.METRIC}
public int insertMetric( Metric rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into ${METRICS.METRIC}
public int insertSlice( int Id, int MetricId, long TimeFrom, long TimeTo, double Measurements, double Total, double MinValue, double MaxValue, double Deviation )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into ${METRICS.SLICE}
public int insertSlice( Slice rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into ${METRICS.SLICE}
public int moveChildren( int p1, int p2 )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows.
public int moveSlices( int p1, int p2 )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows.
public int newRelative( int p1, int p2 )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Parameters: descendant, ancestor
public void processActiveMetrics( int p1, long p2, long p3, biz.hammurapi.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row.
public void processKindred( biz.hammurapi.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects all rows from ${METRICS.KINDRED}
public void processMeasurement( biz.hammurapi.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects all rows from ${METRICS.MEASUREMENT}
public void processMetric( biz.hammurapi.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects all rows from ${METRICS.METRIC}
public void processMetricByParent( Integer Parent, biz.hammurapi.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects rows from ${METRICS.METRIC} by foreign key FK_METRIC_SQLC$PARENT columns value(s): PARENT
public void processMetricNameEQ( Integer Parent, String Name, biz.hammurapi.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects row(s) with equal index value(s): PARENT, NAME
public void processMetricsToNormalize( biz.hammurapi.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row.
public void processOrderedMetrics( int p1, biz.hammurapi.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row.
public void processOrderedRootMetrics( biz.hammurapi.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row.
public void processOrderedSlices( int p1, biz.hammurapi.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row.
public void processSlice( biz.hammurapi.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects all rows from ${METRICS.SLICE}
public void processSlice( int p1, long p2, long p3, biz.hammurapi.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row.
public void processSliceByMetric( int MetricId, biz.hammurapi.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects rows from ${METRICS.SLICE} by foreign key FK_SLICE_SQLC$METRIC columns value(s): METRIC_ID
public void processSliceTimeToLE( long TimeTo, biz.hammurapi.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects row(s) with less or equal index value(s) ordered by index. Columns: TIME_TO
public int updateMeasurement( Measurement rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Updates record with by primary key in METRICS.MEASUREMENT
public int updateMetric( Metric rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Updates record with by primary key in METRICS.METRIC
public int updateSlice( Slice rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Updates record with by primary key in METRICS.SLICE

Fields
NameTypeModifiersAttributes
_processorbiz.hammurapi.sql.SQLProcessor
private
IMPL_CLASS_biz_hammurapi_metrics_persistent_ActualPeriodjava.lang.Class
private
static
final
IMPL_CLASS_biz_hammurapi_metrics_persistent_Kindredjava.lang.Class
private
static
final
IMPL_CLASS_biz_hammurapi_metrics_persistent_Measurementjava.lang.Class
private
static
final
IMPL_CLASS_biz_hammurapi_metrics_persistent_Metricjava.lang.Class
private
static
final
IMPL_CLASS_biz_hammurapi_metrics_persistent_Slicejava.lang.Class
private
static
final