Search in sources :

Example 1 with LabelCountMap

use of com.revolsys.util.count.LabelCountMap in project com.revolsys.open by revolsys.

the class DirectoryRecordWriter method setDirectory.

public void setDirectory(final File baseDirectory) {
    this.directory = baseDirectory;
    baseDirectory.mkdirs();
    this.labelCountMap = new LabelCountMap("Write " + baseDirectory.getAbsolutePath());
    this.labelCountMap.connect();
}
Also used : LabelCountMap(com.revolsys.util.count.LabelCountMap)

Example 2 with LabelCountMap

use of com.revolsys.util.count.LabelCountMap in project com.revolsys.open by revolsys.

the class EqualTypeAndLineEdgeCleanupVisitor method init.

@PostConstruct
public void init() {
    this.duplicateStatistics = new LabelCountMap("Duplicate equal lines");
    this.duplicateStatistics.connect();
}
Also used : LabelCountMap(com.revolsys.util.count.LabelCountMap) PostConstruct(javax.annotation.PostConstruct)

Example 3 with LabelCountMap

use of com.revolsys.util.count.LabelCountMap in project com.revolsys.open by revolsys.

the class ItersectsNodeEdgeCleanupVisitor method init.

@PostConstruct
public void init() {
    this.splitStatistics = new LabelCountMap("Split edges");
    this.splitStatistics.connect();
}
Also used : LabelCountMap(com.revolsys.util.count.LabelCountMap) PostConstruct(javax.annotation.PostConstruct)

Example 4 with LabelCountMap

use of com.revolsys.util.count.LabelCountMap in project com.revolsys.open by revolsys.

the class LinearIntersectionNotEqualLineEdgeCleanupVisitor method init.

@PostConstruct
public void init() {
    this.duplicateStatistics = new LabelCountMap("Duplicate intersecting lines");
    this.duplicateStatistics.connect();
}
Also used : LabelCountMap(com.revolsys.util.count.LabelCountMap) PostConstruct(javax.annotation.PostConstruct)

Example 5 with LabelCountMap

use of com.revolsys.util.count.LabelCountMap in project com.revolsys.open by revolsys.

the class RecordPseudoNodeRemovalVisitor method init.

@PostConstruct
public void init() {
    this.mergedStatistics = new LabelCountMap("Merged at psuedo node");
    this.mergedStatistics.connect();
}
Also used : LabelCountMap(com.revolsys.util.count.LabelCountMap) PostConstruct(javax.annotation.PostConstruct)

Aggregations

LabelCountMap (com.revolsys.util.count.LabelCountMap)13 CategoryLabelCountMap (com.revolsys.util.count.CategoryLabelCountMap)4 PostConstruct (javax.annotation.PostConstruct)4 Identifier (com.revolsys.identifier.Identifier)1 BaseCloseable (com.revolsys.io.BaseCloseable)1 RecordReader (com.revolsys.record.io.RecordReader)1 RecordStore (com.revolsys.record.schema.RecordStore)1 Transaction (com.revolsys.transaction.Transaction)1 ConcurrentModificationException (java.util.ConcurrentModificationException)1