当前位置: 首页>>代码示例>>Java>>正文


Java SerialDate.createInstance方法代码示例

本文整理汇总了Java中org.jfree.date.SerialDate.createInstance方法的典型用法代码示例。如果您正苦于以下问题:Java SerialDate.createInstance方法的具体用法?Java SerialDate.createInstance怎么用?Java SerialDate.createInstance使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.jfree.date.SerialDate的用法示例。


在下文中一共展示了SerialDate.createInstance方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: Day

import org.jfree.date.SerialDate; //导入方法依赖的package包/类
/**
 * Constructs a new instance, based on a particular date/time and time zone.
 *
 * @param time  the date/time (<code>null</code> not permitted).
 * @param zone  the time zone (<code>null</code> not permitted).
 * @param locale  the locale (<code>null</code> not permitted).
 */
public Day(Date time, TimeZone zone, Locale locale) {
    if (time == null) {
        throw new IllegalArgumentException("Null 'time' argument.");
    }
    if (zone == null) {
        throw new IllegalArgumentException("Null 'zone' argument.");
    }
    if (locale == null) {
        throw new IllegalArgumentException("Null 'locale' argument.");
    }
    Calendar calendar = Calendar.getInstance(zone, locale);
    calendar.setTime(time);
    int d = calendar.get(Calendar.DAY_OF_MONTH);
    int m = calendar.get(Calendar.MONTH) + 1;
    int y = calendar.get(Calendar.YEAR);
    this.serialDate = SerialDate.createInstance(d, m, y);
    peg(calendar);
}
 
开发者ID:lulab,项目名称:PI,代码行数:26,代码来源:Day.java

示例2: previous

import org.jfree.date.SerialDate; //导入方法依赖的package包/类
/**
 * Returns the day preceding this one.
 *
 * @return the day preceding this one.
 */
public RegularTimePeriod previous() {

    final Day result;
    final int serial = this.serialDate.toSerial();
    if (serial > SerialDate.SERIAL_LOWER_BOUND) {
        final SerialDate yesterday = SerialDate.createInstance(serial - 1);
        return new Day(yesterday);
    }
    else {
        result = null;
    }
    return result;

}
 
开发者ID:parabuild-ci,项目名称:parabuild-ci,代码行数:20,代码来源:Day.java

示例3: Day

import org.jfree.date.SerialDate; //导入方法依赖的package包/类
/**
 * Constructs a new instance, based on a particular date/time and time zone.
 *
 * @param time  the date/time.
 * @param zone  the time zone.
 */
public Day(Date time, TimeZone zone) {
    if (time == null) {
        throw new IllegalArgumentException("Null 'time' argument.");
    }
    if (zone == null) {
        throw new IllegalArgumentException("Null 'zone' argument.");
    }
    Calendar calendar = Calendar.getInstance(zone);
    calendar.setTime(time);
    int d = calendar.get(Calendar.DAY_OF_MONTH);
    int m = calendar.get(Calendar.MONTH) + 1;
    int y = calendar.get(Calendar.YEAR);
    this.serialDate = SerialDate.createInstance(d, m, y);
    peg(calendar);
}
 
开发者ID:parabuild-ci,项目名称:parabuild-ci,代码行数:22,代码来源:Day.java

示例4: Day

import org.jfree.date.SerialDate; //导入方法依赖的package包/类
/**
 * Constructs a new instance, based on a particular date/time and time zone.
 *
 * @param time  the date/time.
 * @param zone  the time zone.
 */
public Day(Date time, TimeZone zone) {
    // FIXME: need a Locale as well as a TimeZone
    if (time == null) {
        throw new IllegalArgumentException("Null 'time' argument.");
    }
    if (zone == null) {
        throw new IllegalArgumentException("Null 'zone' argument.");
    }
    Calendar calendar = Calendar.getInstance(zone);
    calendar.setTime(time);
    int d = calendar.get(Calendar.DAY_OF_MONTH);
    int m = calendar.get(Calendar.MONTH) + 1;
    int y = calendar.get(Calendar.YEAR);
    this.serialDate = SerialDate.createInstance(d, m, y);
    peg(calendar);
}
 
开发者ID:SOCR,项目名称:HTML5_WebSite,代码行数:23,代码来源:Day.java

示例5: Day

import org.jfree.date.SerialDate; //导入方法依赖的package包/类
/**
 * Constructs a Day, based on a particular date/time and time zone.
 *
 * @param time  the date/time.
 * @param zone  the time zone.
 */
public Day(final Date time, final TimeZone zone) {
    final Calendar calendar = Calendar.getInstance(zone);
    calendar.setTime(time);
    final int d = calendar.get(Calendar.DAY_OF_MONTH);
    final int m = calendar.get(Calendar.MONTH) + 1;
    final int y = calendar.get(Calendar.YEAR);
    this.serialDate = SerialDate.createInstance(d, m, y);
}
 
开发者ID:parabuild-ci,项目名称:parabuild-ci,代码行数:15,代码来源:Day.java

示例6: next

import org.jfree.date.SerialDate; //导入方法依赖的package包/类
/**
 * Returns the day following this one, or null if some limit has been reached.
 *
 * @return the day following this one, or <code>null</code> if some limit has been reached.
 */
public RegularTimePeriod next() {

    final Day result;
    final int serial = this.serialDate.toSerial();
    if (serial < SerialDate.SERIAL_UPPER_BOUND) {
        final SerialDate tomorrow = SerialDate.createInstance(serial + 1);
        return new Day(tomorrow);
    }
    else {
        result = null;
    }
    return result;

}
 
开发者ID:parabuild-ci,项目名称:parabuild-ci,代码行数:20,代码来源:Day.java

示例7: previous

import org.jfree.date.SerialDate; //导入方法依赖的package包/类
/**
 * Returns the day preceding this one.
 *
 * @return The day preceding this one.
 */
public RegularTimePeriod previous() {

    Day result;
    int serial = this.serialDate.toSerial();
    if (serial > SerialDate.SERIAL_LOWER_BOUND) {
        SerialDate yesterday = SerialDate.createInstance(serial - 1);
        return new Day(yesterday);
    }
    else {
        result = null;
    }
    return result;

}
 
开发者ID:parabuild-ci,项目名称:parabuild-ci,代码行数:20,代码来源:Day.java

示例8: next

import org.jfree.date.SerialDate; //导入方法依赖的package包/类
/**
 * Returns the day following this one, or <code>null</code> if some limit 
 * has been reached.
 *
 * @return The day following this one, or <code>null</code> if some limit 
 *         has been reached.
 */
public RegularTimePeriod next() {

    Day result;
    int serial = this.serialDate.toSerial();
    if (serial < SerialDate.SERIAL_UPPER_BOUND) {
        SerialDate tomorrow = SerialDate.createInstance(serial + 1);
        return new Day(tomorrow);
    }
    else {
        result = null;
    }
    return result;

}
 
开发者ID:parabuild-ci,项目名称:parabuild-ci,代码行数:22,代码来源:Day.java

示例9: Day

import org.jfree.date.SerialDate; //导入方法依赖的package包/类
/**
 * Constructs a new instance, based on a particular date/time and time zone.
 *
 * @param time  the date/time (<code>null</code> not permitted).
 * @param zone  the time zone (<code>null</code> not permitted).
 * @param locale  the locale (<code>null</code> not permitted).
 */
public Day(Date time, TimeZone zone, Locale locale) {
    ParamChecks.nullNotPermitted(time, "time");
    ParamChecks.nullNotPermitted(zone, "zone");
    ParamChecks.nullNotPermitted(locale, "locale");
    Calendar calendar = Calendar.getInstance(zone, locale);
    calendar.setTime(time);
    int d = calendar.get(Calendar.DAY_OF_MONTH);
    int m = calendar.get(Calendar.MONTH) + 1;
    int y = calendar.get(Calendar.YEAR);
    this.serialDate = SerialDate.createInstance(d, m, y);
    peg(calendar);
}
 
开发者ID:mdzio,项目名称:ccu-historian,代码行数:20,代码来源:Day.java

示例10: previous

import org.jfree.date.SerialDate; //导入方法依赖的package包/类
/**
 * Returns the day preceding this one.
 *
 * @return The day preceding this one.
 */
@Override
public RegularTimePeriod previous() {
    Day result;
    int serial = this.serialDate.toSerial();
    if (serial > SerialDate.SERIAL_LOWER_BOUND) {
        SerialDate yesterday = SerialDate.createInstance(serial - 1);
        return new Day(yesterday);
    }
    else {
        result = null;
    }
    return result;
}
 
开发者ID:mdzio,项目名称:ccu-historian,代码行数:19,代码来源:Day.java

示例11: next

import org.jfree.date.SerialDate; //导入方法依赖的package包/类
/**
 * Returns the day following this one, or <code>null</code> if some limit
 * has been reached.
 *
 * @return The day following this one, or <code>null</code> if some limit
 *         has been reached.
 */
@Override
public RegularTimePeriod next() {
    Day result;
    int serial = this.serialDate.toSerial();
    if (serial < SerialDate.SERIAL_UPPER_BOUND) {
        SerialDate tomorrow = SerialDate.createInstance(serial + 1);
        return new Day(tomorrow);
    }
    else {
        result = null;
    }
    return result;
}
 
开发者ID:mdzio,项目名称:ccu-historian,代码行数:21,代码来源:Day.java

示例12: SerialDateChooserPanel

import org.jfree.date.SerialDate; //导入方法依赖的package包/类
/**
 * Constructs a new date chooser panel, using today's date as the initial selection.
 */
public SerialDateChooserPanel() {

    this(SerialDate.createInstance(new Date()), false,
         DEFAULT_DATE_BUTTON_COLOR,
         DEFAULT_MONTH_BUTTON_COLOR);

}
 
开发者ID:mdzio,项目名称:ccu-historian,代码行数:11,代码来源:SerialDateChooserPanel.java

示例13: getFirstVisibleDate

import org.jfree.date.SerialDate; //导入方法依赖的package包/类
/**
 * Returns the first date that is visible in the grid.  This should always be in the month
 * preceding the month of the selected date.
 *
 * @return the first visible date.
 */
protected SerialDate getFirstVisibleDate() {

    SerialDate result = SerialDate.createInstance(1, this.date.getMonth(), this.date.getYYYY());
    result = SerialDate.addDays(-1, result);
    while (result.getDayOfWeek() != getFirstDayOfWeek()) {
        result = SerialDate.addDays(-1, result);
    }
    return result;

}
 
开发者ID:mdzio,项目名称:ccu-historian,代码行数:17,代码来源:SerialDateChooserPanel.java

示例14: next

import org.jfree.date.SerialDate; //导入方法依赖的package包/类
/**
 * Returns the day following this one, or <code>null</code> if some limit
 * has been reached.
 *
 * @return The day following this one, or <code>null</code> if some limit
 *         has been reached.
 */
public RegularTimePeriod next() {

    Day result;
    int serial = this.serialDate.toSerial();
    if (serial < SerialDate.SERIAL_UPPER_BOUND) {
        SerialDate tomorrow = SerialDate.createInstance(serial + 1);
        return new Day(tomorrow);
    }
    else {
        result = null;
    }
    return result;

}
 
开发者ID:SOCR,项目名称:HTML5_WebSite,代码行数:22,代码来源:Day.java

示例15: previous

import org.jfree.date.SerialDate; //导入方法依赖的package包/类
/**
 * Returns the day preceding this one.
 *
 * @return The day preceding this one.
 */
public RegularTimePeriod previous() {
    Day result;
    int serial = this.serialDate.toSerial();
    if (serial > SerialDate.SERIAL_LOWER_BOUND) {
        SerialDate yesterday = SerialDate.createInstance(serial - 1);
        return new Day(yesterday);
    }
    else {
        result = null;
    }
    return result;
}
 
开发者ID:lulab,项目名称:PI,代码行数:18,代码来源:Day.java


注:本文中的org.jfree.date.SerialDate.createInstance方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。