亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? timetablexydataset.java

?? jfreechart1.0.1 jsp繪制圖表的開發包
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
     *
     * @param series  the series (zero-based index, ignored).
     *
     * @return The number of items within the series.
     */
    public int getItemCount(int series) {
        return getItemCount();
    }
    
    /**
     * Returns the number of series in the dataset.
     *
     * @return The series count.
     */
    public int getSeriesCount() {
        return this.values.getColumnCount();
    }

    /**
     * Returns the key for a series.
     *
     * @param series  the series (zero-based index).
     *
     * @return The key for the series.
     */
    public Comparable getSeriesKey(int series) {
        return this.values.getColumnKey(series);
    }
    
    /**
     * Returns the x-value for an item within a series.  The x-values may or 
     * may not be returned in ascending order, that is up to the class 
     * implementing the interface.
     *
     * @param series  the series (zero-based index).
     * @param item  the item (zero-based index).
     *
     * @return The x-value.
     */
    public Number getX(int series, int item) {
        return new Double(getXValue(series, item));
    }
    
    /**
     * Returns the x-value (as a double primitive) for an item within a series.
     * 
     * @param series  the series index (zero-based).
     * @param item  the item index (zero-based).
     * 
     * @return The value.
     */
    public double getXValue(int series, int item) {
        TimePeriod period = (TimePeriod) this.values.getRowKey(item);
        return getXValue(period);
    }

    /**
     * Returns the starting X value for the specified series and item.
     *
     * @param series  the series (zero-based index).
     * @param item  the item within a series (zero-based index).
     *
     * @return The starting X value for the specified series and item.
     */
    public Number getStartX(int series, int item) {
        return new Double(getStartXValue(series, item));
    }

    /**
     * Returns the start x-value (as a double primitive) for an item within 
     * a series.
     * 
     * @param series  the series index (zero-based).
     * @param item  the item index (zero-based).
     * 
     * @return The value.
     */
    public double getStartXValue(int series, int item) {
        TimePeriod period = (TimePeriod) this.values.getRowKey(item);
        return period.getStart().getTime();
    }

    /**
     * Returns the ending X value for the specified series and item.
     *
     * @param series  the series (zero-based index).
     * @param item  the item within a series (zero-based index).
     *
     * @return The ending X value for the specified series and item.
     */
    public Number getEndX(int series, int item) {
        return new Double(getEndXValue(series, item));
    }

    /**
     * Returns the end x-value (as a double primitive) for an item within 
     * a series.
     * 
     * @param series  the series index (zero-based).
     * @param item  the item index (zero-based).
     * 
     * @return The value.
     */
    public double getEndXValue(int series, int item) {
        TimePeriod period = (TimePeriod) this.values.getRowKey(item);
        return period.getEnd().getTime();
    }
 
    /**
     * Returns the y-value for an item within a series.
     *
     * @param series  the series (zero-based index).
     * @param item  the item (zero-based index).
     *
     * @return The y-value (possibly <code>null</code>).
     */
    public Number getY(int series, int item) {
        return this.values.getValue(item, series);
    }
    
    /**
     * Returns the starting Y value for the specified series and item.
     *
     * @param series  the series (zero-based index).
     * @param item  the item within a series (zero-based index).
     *
     * @return The starting Y value for the specified series and item.
     */
    public Number getStartY(int series, int item) {
        return getY(series, item);
    }
    
    /**
     * Returns the ending Y value for the specified series and item.
     *
     * @param series  the series (zero-based index).
     * @param item  the item within a series (zero-based index).
     *
     * @return The ending Y value for the specified series and item.
     */
    public Number getEndY(int series, int item) {
        return getY(series, item);
    }
    
    /**
     * Returns the x-value for a time period.
     *
     * @param period  the time period.
     *
     * @return The x-value.
     */
    private long getXValue(TimePeriod period) {
        long result = 0L;
        if (this.xPosition == TimePeriodAnchor.START) {
            result = period.getStart().getTime();
        }
        else if (this.xPosition == TimePeriodAnchor.MIDDLE) {
            long t0 = period.getStart().getTime();
            long t1 = period.getEnd().getTime();
            result = t0 + (t1 - t0) / 2L;
        }
        else if (this.xPosition == TimePeriodAnchor.END) {
            result = period.getEnd().getTime();
        }
        return result;
    }
    
    /**
     * Returns the minimum x-value in the dataset.
     *
     * @param includeInterval  a flag that determines whether or not the
     *                         x-interval is taken into account.
     * 
     * @return The minimum value.
     */
    public double getDomainLowerBound(boolean includeInterval) {
        double result = Double.NaN;
        Range r = getDomainBounds(includeInterval);
        if (r != null) {
            result = r.getLowerBound();
        }
        return result;
    }

    /**
     * Returns the maximum x-value in the dataset.
     *
     * @param includeInterval  a flag that determines whether or not the
     *                         x-interval is taken into account.
     * 
     * @return The maximum value.
     */
    public double getDomainUpperBound(boolean includeInterval) {
        double result = Double.NaN;
        Range r = getDomainBounds(includeInterval);
        if (r != null) {
            result = r.getUpperBound();
        }
        return result;
    }

    /**
     * Returns the range of the values in this dataset's domain.
     * 
     * @param includeInterval  a flag that controls whether or not the
     *                         x-intervals are taken into account.
     *
     * @return The range.
     */
    public Range getDomainBounds(boolean includeInterval) {
        List keys = this.values.getRowKeys();
        if (keys.isEmpty()) {
            return null;
        }
        
        TimePeriod first = (TimePeriod) keys.get(0);
        TimePeriod last = (TimePeriod) keys.get(keys.size() - 1);
        
        if (!includeInterval || this.domainIsPointsInTime) {
            return new Range(getXValue(first), getXValue(last));
        }
        else {
            return new Range(
                first.getStart().getTime(), last.getEnd().getTime()
            );
        }
    }
    
    /**
     * Tests this dataset for equality with an arbitrary object.
     * 
     * @param obj  the object (<code>null</code> permitted).
     * 
     * @return A boolean.
     */
    public boolean equals(Object obj) {
        if (obj == this) {
            return true;
        }
        if (!(obj instanceof TimeTableXYDataset)) {
            return false;
        }
        TimeTableXYDataset that = (TimeTableXYDataset) obj;
        if (this.domainIsPointsInTime != that.domainIsPointsInTime) {
            return false;
        }
        if (this.xPosition != that.xPosition) {
            return false;
        }
        if (!this.workingCalendar.getTimeZone().equals(
            that.workingCalendar.getTimeZone())
        ) {
            return false;
        }
        if (!this.values.equals(that.values)) {
            return false;
        }
        return true;
    }
    
    /**
     * Returns a clone of this dataset.
     * 
     * @return A clone.
     * 
     * @throws CloneNotSupportedException if the dataset cannot be cloned.
     */
    public Object clone() throws CloneNotSupportedException {
        TimeTableXYDataset clone = (TimeTableXYDataset) super.clone();
        clone.values = (DefaultKeyedValues2D) this.values.clone();
        clone.workingCalendar = (Calendar) this.workingCalendar.clone();
        return clone;
    }

}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一本久道久久综合中文字幕| 另类小说视频一区二区| 26uuu亚洲综合色| 在线观看91精品国产入口| 成人自拍视频在线观看| 国产在线国偷精品产拍免费yy| 亚洲午夜免费视频| 亚洲美女精品一区| 亚洲成人综合在线| 日韩中文字幕区一区有砖一区 | 性做久久久久久免费观看| 一区二区三区四区中文字幕| 一区2区3区在线看| 日韩主播视频在线| 久久成人免费网| 国产剧情一区二区三区| 成人免费高清在线观看| 91免费版pro下载短视频| 91国产福利在线| 欧美一区二区三区公司| 久久久久久久国产精品影院| 欧美激情一区二区在线| 亚洲在线成人精品| 日本vs亚洲vs韩国一区三区二区 | 久久国产剧场电影| 国产91色综合久久免费分享| 99在线精品一区二区三区| 色8久久精品久久久久久蜜| 欧美一区午夜视频在线观看| 久久综合九色欧美综合狠狠| 亚洲欧美在线视频| 日欧美一区二区| 成人午夜免费电影| 欧美日韩大陆一区二区| 国产欧美日韩视频一区二区 | 偷拍日韩校园综合在线| 激情综合色丁香一区二区| 99精品在线观看视频| 日韩欧美一卡二卡| 亚洲一区在线看| 免费观看在线综合色| 成人av高清在线| 欧美白人最猛性xxxxx69交| 综合色中文字幕| 韩国女主播成人在线观看| 色哟哟在线观看一区二区三区| 日韩精品一区二区三区swag| 亚洲欧美一区二区不卡| 国产麻豆一精品一av一免费 | 欧美精品精品一区| 中文字幕一区二区三区不卡| 黄色资源网久久资源365| 欧美综合久久久| **性色生活片久久毛片| 国产剧情一区二区三区| 欧美mv日韩mv国产| 日韩精品欧美精品| 欧美写真视频网站| 亚洲男人的天堂网| 国产电影一区二区三区| 欧美一级在线免费| 亚洲电影视频在线| 欧美在线你懂的| 亚洲精品中文字幕乱码三区| 国产毛片精品一区| 久久影院午夜片一区| 国产一区在线视频| 久久久综合九色合综国产精品| 麻豆极品一区二区三区| 日韩网站在线看片你懂的| 日韩成人av影视| 9191国产精品| 五月综合激情网| 欧美日韩国产中文| 亚洲第一激情av| 欧美猛男gaygay网站| 日韩精品一二三四| 精品999在线播放| 国产美女精品人人做人人爽| 久久午夜电影网| 国产凹凸在线观看一区二区| 国产欧美日韩在线| 成人avav在线| 亚洲一区二区三区在线看| 欧美巨大另类极品videosbest| 视频一区免费在线观看| 日韩欧美国产一区二区在线播放| 精品一区二区三区视频在线观看 | 欧美视频一二三区| 日本在线不卡视频一二三区| 亚洲精品一区二区三区香蕉| 国产99久久久国产精品免费看| 国产精品电影一区二区三区| 一本一本久久a久久精品综合麻豆| 一区二区三区在线观看视频| 91精品国产综合久久久久| 久久精品国产澳门| 中文字幕免费一区| 欧洲精品中文字幕| 婷婷综合在线观看| 国产亚洲污的网站| 99久久久免费精品国产一区二区| 综合网在线视频| 欧美色精品在线视频| 日韩精品久久久久久| 精品国产免费人成在线观看| 成人午夜激情影院| 亚洲一区二区在线免费看| 欧美一级二级三级乱码| 成人午夜视频在线| 香蕉影视欧美成人| 久久久久99精品国产片| 欧美视频中文字幕| 国产乱一区二区| 亚洲码国产岛国毛片在线| 欧美一区二区三区爱爱| 大美女一区二区三区| 婷婷综合另类小说色区| 中文字幕二三区不卡| 制服.丝袜.亚洲.另类.中文| 国产99久久久久| 日韩电影在线一区| 亚洲精选视频在线| 久久综合久久鬼色中文字| 欧美艳星brazzers| 国产乱码精品一区二区三区忘忧草| 中文字幕一区二区三区四区不卡| 宅男在线国产精品| 91麻豆国产精品久久| 毛片av中文字幕一区二区| 亚洲一二三区不卡| 中文字幕五月欧美| 久久综合狠狠综合久久综合88| 在线观看免费成人| aaa国产一区| 国产999精品久久| 久久成人羞羞网站| 日韩成人午夜精品| 亚洲已满18点击进入久久| 国产精品二三区| 久久美女艺术照精彩视频福利播放 | 中文字幕的久久| 2023国产精华国产精品| 91精品国产一区二区三区蜜臀| 日本高清不卡视频| 色婷婷综合久久久久中文| 成人免费av资源| 国产酒店精品激情| 国产精品一区二区三区乱码| 狠狠色丁香九九婷婷综合五月| 美女一区二区在线观看| 三级一区在线视频先锋 | 亚洲色图欧美偷拍| 国产精品午夜在线| 国产午夜久久久久| 国产午夜精品在线观看| 国产女同互慰高潮91漫画| 久久久精品欧美丰满| 欧美成人午夜电影| www激情久久| 国产精品久久久久9999吃药| 国产精品视频yy9299一区| 国产亚洲精品资源在线26u| 久久伊99综合婷婷久久伊| 久久精品免费在线观看| 久久久蜜桃精品| 国产欧美日韩在线看| 成人欧美一区二区三区视频网页| 亚洲色图丝袜美腿| 亚洲国产日韩综合久久精品| 亚洲不卡av一区二区三区| 亚洲电影激情视频网站| 午夜日韩在线电影| 日韩成人伦理电影在线观看| 久久精品国产秦先生| 国产一区二区三区香蕉| 97久久超碰国产精品| 欧美日韩专区在线| 精品国产乱码久久久久久蜜臀| 久久久91精品国产一区二区精品| 亚洲欧洲三级电影| 亚洲精品菠萝久久久久久久| 男女性色大片免费观看一区二区 | 国产精品久久久久久妇女6080 | 国产精品久久午夜| 夜夜揉揉日日人人青青一国产精品| 亚洲3atv精品一区二区三区| 久久成人久久鬼色| 99re这里只有精品首页| 26uuu久久综合| 亚洲精品水蜜桃| 精品一区二区三区免费观看| 成人av片在线观看| 制服丝袜成人动漫| 国产精品久久久久国产精品日日| 日韩国产欧美在线播放| 99久久精品费精品国产一区二区| 欧美久久久久免费| 亚洲欧美在线观看| 美日韩一区二区|