com.github.spuchmann.xml.splitter.XmlSplitStatistic Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xml-splitter Show documentation
Show all versions of xml-splitter Show documentation
A simple java library which makes it easy to split xml files into fragments.
The newest version!
package com.github.spuchmann.xml.splitter;
import java.util.Date;
/**
* statistic object which gets you the base information for doing a split
*
* @since 0.1.0
*/
public class XmlSplitStatistic {
private int count;
private Date startTime;
private Date endTime;
public XmlSplitStatistic() {
this.startTime = new Date();
}
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
public Date getStartTime() {
return startTime;
}
public void setStartTime(Date startTime) {
this.startTime = startTime;
}
public Date getEndTime() {
return endTime;
}
public void setEndTime(Date endTime) {
this.endTime = endTime;
}
}