本文整理汇总了Java中org.jfree.data.time.TimePeriodAnchor类的典型用法代码示例。如果您正苦于以下问题:Java TimePeriodAnchor类的具体用法?Java TimePeriodAnchor怎么用?Java TimePeriodAnchor使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
TimePeriodAnchor类属于org.jfree.data.time包,在下文中一共展示了TimePeriodAnchor类的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testEquals
import org.jfree.data.time.TimePeriodAnchor; //导入依赖的package包/类
/**
* Tests the equals() method.
*/
public void testEquals() {
TimePeriodValuesCollection c1 = new TimePeriodValuesCollection();
TimePeriodValuesCollection c2 = new TimePeriodValuesCollection();
assertTrue(c1.equals(c2));
c1.setDomainIsPointsInTime(!c1.getDomainIsPointsInTime());
assertFalse(c1.equals(c2));
c2.setDomainIsPointsInTime(c1.getDomainIsPointsInTime());
assertTrue(c1.equals(c2));
c1.setXPosition(TimePeriodAnchor.END);
assertFalse(c1.equals(c2));
c2.setXPosition(TimePeriodAnchor.END);
assertTrue(c1.equals(c2));
TimePeriodValues v1 = new TimePeriodValues("Test");
TimePeriodValues v2 = new TimePeriodValues("Test");
c1.addSeries(v1);
assertFalse(c1.equals(c2));
c2.addSeries(v2);
assertTrue(c1.equals(c2));
}
示例2: createDatasetNumberRequestsUntampered
import org.jfree.data.time.TimePeriodAnchor; //导入依赖的package包/类
private IntervalXYDataset createDatasetNumberRequestsUntampered()
{
Date currentDate;
long currentMsTs;
final TimeSeries series = new TimeSeries( "Sent Untampered Requests per Second" );
if ( model.getMapLogEntryIntervalUntampered() != null )
{
for ( Map.Entry<Integer, LogEntryInterval> log : model.getMapLogEntryIntervalUntampered().entrySet() )
{
// Create TS from model.startTime and log.getIntervalNumber();
currentMsTs = model.getTsAttackStart() + log.getValue().getIntervalNumber();
currentDate = new Date( currentMsTs );
series.add( new Second( currentDate ), ( log.getValue().getNumberRequests() ) );
}
}
final TimeSeriesCollection dataset = new TimeSeriesCollection( series );
dataset.setXPosition( TimePeriodAnchor.MIDDLE );
return dataset;
}
示例3: createDatasetNumberRequestsTampered
import org.jfree.data.time.TimePeriodAnchor; //导入依赖的package包/类
private IntervalXYDataset createDatasetNumberRequestsTampered()
{
Date currentDate;
long currentMsTs;
final TimeSeries series = new TimeSeries( "Sent Tampered Requests per Second" );
if ( model.getMapLogEntryIntervalTampered() != null )
{
for ( Map.Entry<Integer, LogEntryInterval> log : model.getMapLogEntryIntervalTampered().entrySet() )
{
// Create TS from model.startTime and log.getIntervalNumber();
currentMsTs = model.getTsAttackStart() + log.getValue().getIntervalNumber();
currentDate = new Date( currentMsTs );
series.add( new Second( currentDate ), ( log.getValue().getNumberRequests() ) );
}
}
final TimeSeriesCollection dataset = new TimeSeriesCollection( series );
dataset.setXPosition( TimePeriodAnchor.MIDDLE );
return dataset;
}
示例4: testEquals
import org.jfree.data.time.TimePeriodAnchor; //导入依赖的package包/类
/**
* Tests the equals() method.
*/
public void testEquals() {
TimePeriodValuesCollection c1 = new TimePeriodValuesCollection();
TimePeriodValuesCollection c2 = new TimePeriodValuesCollection();
assertTrue(c1.equals(c2));
c1.setXPosition(TimePeriodAnchor.END);
assertFalse(c1.equals(c2));
c2.setXPosition(TimePeriodAnchor.END);
assertTrue(c1.equals(c2));
TimePeriodValues v1 = new TimePeriodValues("Test");
TimePeriodValues v2 = new TimePeriodValues("Test");
c1.addSeries(v1);
assertFalse(c1.equals(c2));
c2.addSeries(v2);
assertTrue(c1.equals(c2));
}
示例5: getX
import org.jfree.data.time.TimePeriodAnchor; //导入依赖的package包/类
/**
* Returns the x-value for a time period.
*
* @param period the time period (<code>null</code> not permitted).
*
* @return The x-value.
*/
protected synchronized long getX(RegularTimePeriod period) {
long result = 0L;
if (this.xPosition == TimePeriodAnchor.START) {
result = period.getFirstMillisecond();
}
else if (this.xPosition == TimePeriodAnchor.MIDDLE) {
result = period.getMiddleMillisecond();
}
else if (this.xPosition == TimePeriodAnchor.END) {
result = period.getLastMillisecond();
}
return result;
}
示例6: testEquals
import org.jfree.data.time.TimePeriodAnchor; //导入依赖的package包/类
/**
* Confirm that the equals method can distinguish all the required fields.
*/
@Test
public void testEquals() {
OHLCSeriesCollection c1 = new OHLCSeriesCollection();
OHLCSeriesCollection c2 = new OHLCSeriesCollection();
assertEquals(c1, c2);
// add a series
OHLCSeries s1 = new OHLCSeries("Series");
s1.add(new Year(2006), 1.0, 1.1, 1.2, 1.3);
c1.addSeries(s1);
assertFalse(c1.equals(c2));
OHLCSeries s2 = new OHLCSeries("Series");
s2.add(new Year(2006), 1.0, 1.1, 1.2, 1.3);
c2.addSeries(s2);
assertTrue(c1.equals(c2));
// add an empty series
c1.addSeries(new OHLCSeries("Empty Series"));
assertFalse(c1.equals(c2));
c2.addSeries(new OHLCSeries("Empty Series"));
assertTrue(c1.equals(c2));
c1.setXPosition(TimePeriodAnchor.END);
assertFalse(c1.equals(c2));
c2.setXPosition(TimePeriodAnchor.END);
assertTrue(c1.equals(c2));
}
示例7: getX
import org.jfree.data.time.TimePeriodAnchor; //导入依赖的package包/类
/**
* Returns the x-value for a time period.
*
* @param period the time period (<code>null</code> not permitted).
*
* @return The x-value.
*/
protected synchronized long getX(RegularTimePeriod period) {
long result = 0L;
if (this.xPosition == TimePeriodAnchor.START) {
result = period.getFirstMillisecond();
}
else if (this.xPosition == TimePeriodAnchor.MIDDLE) {
result = period.getMiddleMillisecond();
}
else if (this.xPosition == TimePeriodAnchor.END) {
result = period.getLastMillisecond();
}
return result;
}
示例8: getX
import org.jfree.data.time.TimePeriodAnchor; //导入依赖的package包/类
/**
* Returns the x-value for a time period.
*
* @param period the time period ({@code null} not permitted).
*
* @return The x-value.
*/
protected synchronized long getX(RegularTimePeriod period) {
long result = 0L;
if (this.xPosition == TimePeriodAnchor.START) {
result = period.getFirstMillisecond();
}
else if (this.xPosition == TimePeriodAnchor.MIDDLE) {
result = period.getMiddleMillisecond();
}
else if (this.xPosition == TimePeriodAnchor.END) {
result = period.getLastMillisecond();
}
return result;
}
示例9: testEquals
import org.jfree.data.time.TimePeriodAnchor; //导入依赖的package包/类
/**
* Confirm that the equals method can distinguish all the required fields.
*/
public void testEquals() {
OHLCSeriesCollection c1 = new OHLCSeriesCollection();
OHLCSeriesCollection c2 = new OHLCSeriesCollection();
assertEquals(c1, c2);
// add a series
OHLCSeries s1 = new OHLCSeries("Series");
s1.add(new Year(2006), 1.0, 1.1, 1.2, 1.3);
c1.addSeries(s1);
assertFalse(c1.equals(c2));
OHLCSeries s2 = new OHLCSeries("Series");
s2.add(new Year(2006), 1.0, 1.1, 1.2, 1.3);
c2.addSeries(s2);
assertTrue(c1.equals(c2));
// add an empty series
c1.addSeries(new OHLCSeries("Empty Series"));
assertFalse(c1.equals(c2));
c2.addSeries(new OHLCSeries("Empty Series"));
assertTrue(c1.equals(c2));
c1.setXPosition(TimePeriodAnchor.END);
assertFalse(c1.equals(c2));
c2.setXPosition(TimePeriodAnchor.END);
assertTrue(c1.equals(c2));
}
示例10: testGetSurroundingItems
import org.jfree.data.time.TimePeriodAnchor; //导入依赖的package包/类
/**
* Test the getSurroundingItems() method to ensure it is returning the values we expect.
*/
public void testGetSurroundingItems() {
final TimeSeries series = new TimeSeries("Series 1", Day.class);
final TimeSeriesCollection collection = new TimeSeriesCollection(series);
collection.setXPosition(TimePeriodAnchor.MIDDLE);
// for a series with no data, we expect {-1, -1}...
int[] result = collection.getSurroundingItems(0, 1000L);
assertTrue(result[0] == -1);
assertTrue(result[1] == -1);
// now test with a single value in the series...
final Day today = new Day();
final long start1 = today.getFirstMillisecond();
final long middle1 = today.getMiddleMillisecond();
final long end1 = today.getLastMillisecond();
series.add(today, 99.9);
result = collection.getSurroundingItems(0, start1);
assertTrue(result[0] == -1);
assertTrue(result[1] == 0);
result = collection.getSurroundingItems(0, middle1);
assertTrue(result[0] == 0);
assertTrue(result[1] == 0);
result = collection.getSurroundingItems(0, end1);
assertTrue(result[0] == 0);
assertTrue(result[1] == -1);
// now add a second value to the series...
final Day tomorrow = (Day) today.next();
final long start2 = tomorrow.getFirstMillisecond();
final long middle2 = tomorrow.getMiddleMillisecond();
final long end2 = tomorrow.getLastMillisecond();
series.add(tomorrow, 199.9);
result = collection.getSurroundingItems(0, start2);
assertTrue(result[0] == 0);
assertTrue(result[1] == 1);
result = collection.getSurroundingItems(0, middle2);
assertTrue(result[0] == 1);
assertTrue(result[1] == 1);
result = collection.getSurroundingItems(0, end2);
assertTrue(result[0] == 1);
assertTrue(result[1] == -1);
// now add a third value to the series...
final Day yesterday = (Day) today.previous();
final long start3 = yesterday.getFirstMillisecond();
final long middle3 = yesterday.getMiddleMillisecond();
final long end3 = yesterday.getLastMillisecond();
series.add(yesterday, 1.23);
result = collection.getSurroundingItems(0, start3);
assertTrue(result[0] == -1);
assertTrue(result[1] == 0);
result = collection.getSurroundingItems(0, middle3);
assertTrue(result[0] == 0);
assertTrue(result[1] == 0);
result = collection.getSurroundingItems(0, end3);
assertTrue(result[0] == 0);
assertTrue(result[1] == 1);
}
示例11: testEquals
import org.jfree.data.time.TimePeriodAnchor; //导入依赖的package包/类
/**
* Test the equals() method.
*/
public void testEquals() {
assertTrue(TimePeriodAnchor.START.equals(TimePeriodAnchor.START));
assertTrue(TimePeriodAnchor.MIDDLE.equals(TimePeriodAnchor.MIDDLE));
assertTrue(TimePeriodAnchor.END.equals(TimePeriodAnchor.END));
}
示例12: testGetSurroundingItems
import org.jfree.data.time.TimePeriodAnchor; //导入依赖的package包/类
/**
* Test the getSurroundingItems() method to ensure it is returning the
* values we expect.
*/
public void testGetSurroundingItems() {
TimeSeries series = new TimeSeries("Series 1", Day.class);
TimeSeriesCollection collection = new TimeSeriesCollection(series);
collection.setXPosition(TimePeriodAnchor.MIDDLE);
// for a series with no data, we expect {-1, -1}...
int[] result = collection.getSurroundingItems(0, 1000L);
assertTrue(result[0] == -1);
assertTrue(result[1] == -1);
// now test with a single value in the series...
Day today = new Day();
long start1 = today.getFirstMillisecond();
long middle1 = today.getMiddleMillisecond();
long end1 = today.getLastMillisecond();
series.add(today, 99.9);
result = collection.getSurroundingItems(0, start1);
assertTrue(result[0] == -1);
assertTrue(result[1] == 0);
result = collection.getSurroundingItems(0, middle1);
assertTrue(result[0] == 0);
assertTrue(result[1] == 0);
result = collection.getSurroundingItems(0, end1);
assertTrue(result[0] == 0);
assertTrue(result[1] == -1);
// now add a second value to the series...
Day tomorrow = (Day) today.next();
long start2 = tomorrow.getFirstMillisecond();
long middle2 = tomorrow.getMiddleMillisecond();
long end2 = tomorrow.getLastMillisecond();
series.add(tomorrow, 199.9);
result = collection.getSurroundingItems(0, start2);
assertTrue(result[0] == 0);
assertTrue(result[1] == 1);
result = collection.getSurroundingItems(0, middle2);
assertTrue(result[0] == 1);
assertTrue(result[1] == 1);
result = collection.getSurroundingItems(0, end2);
assertTrue(result[0] == 1);
assertTrue(result[1] == -1);
// now add a third value to the series...
Day yesterday = (Day) today.previous();
long start3 = yesterday.getFirstMillisecond();
long middle3 = yesterday.getMiddleMillisecond();
long end3 = yesterday.getLastMillisecond();
series.add(yesterday, 1.23);
result = collection.getSurroundingItems(0, start3);
assertTrue(result[0] == -1);
assertTrue(result[1] == 0);
result = collection.getSurroundingItems(0, middle3);
assertTrue(result[0] == 0);
assertTrue(result[1] == 0);
result = collection.getSurroundingItems(0, end3);
assertTrue(result[0] == 0);
assertTrue(result[1] == 1);
}
示例13: createDatasetResponseTime
import org.jfree.data.time.TimePeriodAnchor; //导入依赖的package包/类
private synchronized XYDataset createDatasetResponseTime( String type )
{
Map<Integer, LogEntryInterval> currentMap = null;
String name = null;
if ( type.equals( "tampered" ) )
{
currentMap = model.getMapLogEntryIntervalTampered();
name = "Mean Response Time Tampered Requests"; // Roundtrip Time
}
else if ( type.equals( "untampered" ) )
{
currentMap = model.getMapLogEntryIntervalUntampered();
name = "Mean Response Time Untampered Requests"; // Roundtrip Time
}
else if ( type.equals( "testprobe" ) )
{
currentMap = model.getMapLogEntryIntervalTestProbe();
name = "Mean Response Time Simulated 3rd Party Requests"; // Roundtrip
// Time
}
else
{
}
Date currentDate;
long currentMsTs;
final TimeSeries series = new TimeSeries( name );
if ( currentMap != null )
{
for ( Map.Entry<Integer, LogEntryInterval> log : currentMap.entrySet() )
{
// Create TS from model.startTime and log.getIntervalNumber();
currentMsTs = model.getTsAttackStart() + log.getValue().getIntervalNumber();
currentDate = new Date( currentMsTs );
// System.out.println(name+" Sekunde"+log.getValue().getIntervalNumber()+" TS: "+currentMsTs+" time "+log.getValue().getMeanResponseTime());
series.add( new Second( currentDate ), ( log.getValue().getMeanResponseTime() ) );
}
}
final TimeSeriesCollection dataset = new TimeSeriesCollection( series );
dataset.setXPosition( TimePeriodAnchor.MIDDLE );
return dataset;
}
示例14: testGetSurroundingItems
import org.jfree.data.time.TimePeriodAnchor; //导入依赖的package包/类
/**
* Test the getSurroundingItems() method to ensure it is returning the
* values we expect.
*/
public void testGetSurroundingItems() {
TimeSeries series = new TimeSeries("Series 1");
TimeSeriesCollection collection = new TimeSeriesCollection(series);
collection.setXPosition(TimePeriodAnchor.MIDDLE);
// for a series with no data, we expect {-1, -1}...
int[] result = collection.getSurroundingItems(0, 1000L);
assertTrue(result[0] == -1);
assertTrue(result[1] == -1);
// now test with a single value in the series...
Day today = new Day();
long start1 = today.getFirstMillisecond();
long middle1 = today.getMiddleMillisecond();
long end1 = today.getLastMillisecond();
series.add(today, 99.9);
result = collection.getSurroundingItems(0, start1);
assertTrue(result[0] == -1);
assertTrue(result[1] == 0);
result = collection.getSurroundingItems(0, middle1);
assertTrue(result[0] == 0);
assertTrue(result[1] == 0);
result = collection.getSurroundingItems(0, end1);
assertTrue(result[0] == 0);
assertTrue(result[1] == -1);
// now add a second value to the series...
Day tomorrow = (Day) today.next();
long start2 = tomorrow.getFirstMillisecond();
long middle2 = tomorrow.getMiddleMillisecond();
long end2 = tomorrow.getLastMillisecond();
series.add(tomorrow, 199.9);
result = collection.getSurroundingItems(0, start2);
assertTrue(result[0] == 0);
assertTrue(result[1] == 1);
result = collection.getSurroundingItems(0, middle2);
assertTrue(result[0] == 1);
assertTrue(result[1] == 1);
result = collection.getSurroundingItems(0, end2);
assertTrue(result[0] == 1);
assertTrue(result[1] == -1);
// now add a third value to the series...
Day yesterday = (Day) today.previous();
long start3 = yesterday.getFirstMillisecond();
long middle3 = yesterday.getMiddleMillisecond();
long end3 = yesterday.getLastMillisecond();
series.add(yesterday, 1.23);
result = collection.getSurroundingItems(0, start3);
assertTrue(result[0] == -1);
assertTrue(result[1] == 0);
result = collection.getSurroundingItems(0, middle3);
assertTrue(result[0] == 0);
assertTrue(result[1] == 0);
result = collection.getSurroundingItems(0, end3);
assertTrue(result[0] == 0);
assertTrue(result[1] == 1);
}