本文整理汇总了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);
}
示例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;
}
示例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);
}
示例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);
}
示例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);
}
示例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;
}
示例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;
}
示例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;
}
示例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);
}
示例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;
}
示例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;
}
示例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);
}
示例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;
}
示例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;
}
示例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;
}