java.util.Calendar.getMinimalDaysInFirstWeek()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(6.4k)|赞(0)|评价(0)|浏览(107)

本文整理了Java中java.util.Calendar.getMinimalDaysInFirstWeek()方法的一些代码示例,展示了Calendar.getMinimalDaysInFirstWeek()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Calendar.getMinimalDaysInFirstWeek()方法的具体详情如下:
包路径:java.util.Calendar
类名称:Calendar
方法名:getMinimalDaysInFirstWeek

Calendar.getMinimalDaysInFirstWeek介绍

[英]Returns the minimal days in the first week of the year.
[中]返回一年中第一周的最小天数。

代码示例

代码示例来源:origin: robovm/robovm

@Override
public int hashCode() {
  return (isLenient() ? 1237 : 1231) + getFirstDayOfWeek()
      + getMinimalDaysInFirstWeek() + getTimeZone().hashCode();
}

代码示例来源:origin: wildfly/wildfly

@Override
public void writeObject(ObjectOutput output, Calendar calendar) throws IOException {
  output.writeUTF(calendar.getCalendarType());
  output.writeLong(calendar.getTimeInMillis());
  output.writeBoolean(calendar.isLenient());
  output.writeUTF(calendar.getTimeZone().getID());
  output.writeInt(calendar.getFirstDayOfWeek());
  output.writeInt(calendar.getMinimalDaysInFirstWeek());
}

代码示例来源:origin: robovm/robovm

@Override
public int hashCode() {
  return calendar.getFirstDayOfWeek()
      + calendar.getMinimalDaysInFirstWeek()
      + calendar.getTimeZone().hashCode()
      + (calendar.isLenient() ? 1231 : 1237)
      + numberFormat.hashCode();
}

代码示例来源:origin: robovm/robovm

/**
 * Compares the given object to this {@code Calendar} and returns whether they are
 * equal. The object must be an instance of {@code Calendar} and have the same
 * properties.
 *
 * @return {@code true} if the given object is equal to this {@code Calendar}, {@code false}
 *         otherwise.
 */
@Override
public boolean equals(Object object) {
  if (this == object) {
    return true;
  }
  if (!(object instanceof Calendar)) {
    return false;
  }
  Calendar cal = (Calendar) object;
  return getTimeInMillis() == cal.getTimeInMillis()
      && isLenient() == cal.isLenient()
      && getFirstDayOfWeek() == cal.getFirstDayOfWeek()
      && getMinimalDaysInFirstWeek() == cal.getMinimalDaysInFirstWeek()
      && getTimeZone().equals(cal.getTimeZone());
}

代码示例来源:origin: robovm/robovm

/**
 * Compares this date format with the specified object and indicates if they
 * are equal.
 *
 * @param object
 *            the object to compare with this date format.
 * @return {@code true} if {@code object} is a {@code DateFormat} object and
 *         it has the same properties as this date format; {@code false}
 *         otherwise.
 * @see #hashCode
 */
@Override
public boolean equals(Object object) {
  if (this == object) {
    return true;
  }
  if (!(object instanceof DateFormat)) {
    return false;
  }
  DateFormat dateFormat = (DateFormat) object;
  return numberFormat.equals(dateFormat.numberFormat)
      && calendar.getTimeZone().equals(
          dateFormat.calendar.getTimeZone())
      && calendar.getFirstDayOfWeek() == dateFormat.calendar
          .getFirstDayOfWeek()
      && calendar.getMinimalDaysInFirstWeek() == dateFormat.calendar
          .getMinimalDaysInFirstWeek()
      && calendar.isLenient() == dateFormat.calendar.isLenient();
}

代码示例来源:origin: org.codehaus.jtstand/jtstand-desktop

/**
 * {@inheritDoc}
 */
public int getMinimalDaysInFirstWeek() {
  return calendar.getMinimalDaysInFirstWeek();
}

代码示例来源:origin: stackoverflow.com

Calendar cal = new GregorianCalendar();
 System.out.println(Locale.getDefault());
 System.out.println(cal.getMinimalDaysInFirstWeek());
 System.out.println(cal.getFirstDayOfWeek());

代码示例来源:origin: MobiVM/robovm

@Override
public int hashCode() {
  return (isLenient() ? 1237 : 1231) + getFirstDayOfWeek()
      + getMinimalDaysInFirstWeek() + getTimeZone().hashCode();
}

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

@Override
public int hashCode() {
  return (isLenient() ? 1237 : 1231) + getFirstDayOfWeek()
      + getMinimalDaysInFirstWeek() + getTimeZone().hashCode();
}

代码示例来源:origin: org.mule.runtime/mule-core

@Override
public int hashCode() {
 return hash(calendar.getTimeInMillis(), calendar.getFirstDayOfWeek(), calendar.getMinimalDaysInFirstWeek(),
       getTimeZoneOffset());
}

代码示例来源:origin: ibinti/bugvm

@Override
public int hashCode() {
  return (isLenient() ? 1237 : 1231) + getFirstDayOfWeek()
      + getMinimalDaysInFirstWeek() + getTimeZone().hashCode();
}

代码示例来源:origin: com.jtransc/jtransc-rt

@Override
public int hashCode() {
  return (isLenient() ? 1237 : 1231) + getFirstDayOfWeek()
    + getMinimalDaysInFirstWeek() + getTimeZone().hashCode();
}

代码示例来源:origin: com.gluonhq/robovm-rt

@Override
public int hashCode() {
  return calendar.getFirstDayOfWeek()
      + calendar.getMinimalDaysInFirstWeek()
      + calendar.getTimeZone().hashCode()
      + (calendar.isLenient() ? 1231 : 1237)
      + numberFormat.hashCode();
}

代码示例来源:origin: MobiVM/robovm

@Override
public int hashCode() {
  return calendar.getFirstDayOfWeek()
      + calendar.getMinimalDaysInFirstWeek()
      + calendar.getTimeZone().hashCode()
      + (calendar.isLenient() ? 1231 : 1237)
      + numberFormat.hashCode();
}

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

@Override
public int hashCode() {
  return calendar.getFirstDayOfWeek()
      + calendar.getMinimalDaysInFirstWeek()
      + calendar.getTimeZone().hashCode()
      + (calendar.isLenient() ? 1231 : 1237)
      + numberFormat.hashCode();
}

代码示例来源:origin: ibinti/bugvm

@Override
public int hashCode() {
  return calendar.getFirstDayOfWeek()
      + calendar.getMinimalDaysInFirstWeek()
      + calendar.getTimeZone().hashCode()
      + (calendar.isLenient() ? 1231 : 1237)
      + numberFormat.hashCode();
}

代码示例来源:origin: com.bugvm/bugvm-rt

@Override
public int hashCode() {
  return calendar.getFirstDayOfWeek()
      + calendar.getMinimalDaysInFirstWeek()
      + calendar.getTimeZone().hashCode()
      + (calendar.isLenient() ? 1231 : 1237)
      + numberFormat.hashCode();
}

代码示例来源:origin: EvoSuite/evosuite

public int getMinimalDaysInFirstWeek()
{
  Capturer.capture(Instrumenter.CAPTURE_ID_JAVA_UTIL_CALENDAR, this, "getMinimalDaysInFirstWeek", "()I", new Object[] {});
  int ret = wrappedCalendar.getMinimalDaysInFirstWeek();
  Capturer.enable(Instrumenter.CAPTURE_ID_JAVA_UTIL_CALENDAR, this, ret);
  return ret;
}

代码示例来源:origin: com.esotericsoftware/kryo

public void write (Kryo kryo, Output output, Calendar object) {
  timeZoneSerializer.write(kryo, output, object.getTimeZone()); // can't be null
  output.writeLong(object.getTimeInMillis(), true);
  output.writeBoolean(object.isLenient());
  output.writeInt(object.getFirstDayOfWeek(), true);
  output.writeInt(object.getMinimalDaysInFirstWeek(), true);
  if (object instanceof GregorianCalendar)
    output.writeLong(((GregorianCalendar)object).getGregorianChange().getTime(), false);
  else
    output.writeLong(DEFAULT_GREGORIAN_CUTOVER, false);
}

代码示例来源:origin: com.esotericsoftware.kryo/kryo

public void write (Kryo kryo, Output output, Calendar object) {
  timeZoneSerializer.write(kryo, output, object.getTimeZone()); // can't be null
  output.writeLong(object.getTimeInMillis(), true);
  output.writeBoolean(object.isLenient());
  output.writeInt(object.getFirstDayOfWeek(), true);
  output.writeInt(object.getMinimalDaysInFirstWeek(), true);
  if (object instanceof GregorianCalendar)
    output.writeLong(((GregorianCalendar)object).getGregorianChange().getTime(), false);
  else
    output.writeLong(DEFAULT_GREGORIAN_CUTOVER, false);
}

相关文章

微信公众号

最新文章

更多