gpt4 book ai didi

com.sun.org.apache.xerces.internal.jaxp.datatype.XMLGregorianCalendarImpl.setSecond()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-20 22:55:05 25 4
gpt4 key购买 nike

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

XMLGregorianCalendarImpl.setSecond介绍

暂无

代码示例

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.jaxp-ri

/**
 * <p>Set time as one unit, including optional milliseconds.</p>
 *
 * @param hour value constraints are summarized in
 * <a href="#datetimefield-hour">hour field of date/time field mapping table</a>.
 * @param minute value constraints are summarized in
 * <a href="#datetimefield-minute">minute field of date/time field mapping table</a>.
 * @param second value constraints are summarized in
 * <a href="#datetimefield-second">second field of date/time field mapping table</a>.
 * @param millisecond value of {@link DatatypeConstants#FIELD_UNDEFINED} indicates this
 *                    optional field is not set.
 *
 * @throws IllegalArgumentException if any parameter is
 * outside value constraints for the field as specified in
 * <a href="#datetimefieldmapping">date/time field mapping table</a>.
 */
public void setTime(int hour, int minute, int second, int millisecond) {
  setHour(hour, false);
  setMinute(minute);
  if (second != 60) {
    setSecond(second);
  } else if ((hour == 23 && minute == 59) || (hour == 0 && minute == 0)) {
    setSecond(second);
  } else {
    invalidFieldValue(SECOND, second);
  }
  setMillisecond(millisecond);
  // must test hour after setting seconds
  testHour();
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.jaxp-ri

setSecond(second);
} else if ((hour == 23 && minute == 59) || (hour == 0 && minute == 0)) {
  setSecond(second);
} else {
  invalidFieldValue(SECOND, second);

代码示例来源:origin: com.sun.xml.parsers/jaxp-ri

/**
 * <p>Set time as one unit, including optional milliseconds.</p>
 *
 * @param hour value constraints are summarized in
 * <a href="#datetimefield-hour">hour field of date/time field mapping table</a>.
 * @param minute value constraints are summarized in
 * <a href="#datetimefield-minute">minute field of date/time field mapping table</a>.
 * @param second value constraints are summarized in
 * <a href="#datetimefield-second">second field of date/time field mapping table</a>.
 * @param millisecond value of {@link DatatypeConstants#FIELD_UNDEFINED} indicates this
 *                    optional field is not set.
 *
 * @throws IllegalArgumentException if any parameter is
 * outside value constraints for the field as specified in
 * <a href="#datetimefieldmapping">date/time field mapping table</a>.
 */
public void setTime(int hour, int minute, int second, int millisecond) {
  setHour(hour, false);
  setMinute(minute);
  if (second != 60) {
    setSecond(second);
  } else if ((hour == 23 && minute == 59) || (hour == 0 && minute == 0)) {
    setSecond(second);
  } else {
    invalidFieldValue(SECOND, second);
  }
  setMillisecond(millisecond);
  // must test hour after setting seconds
  testHour();
}

代码示例来源:origin: com.sun.xml.parsers/jaxp-ri

setSecond(second);
} else if ((hour == 23 && minute == 59) || (hour == 0 && minute == 0)) {
  setSecond(second);
} else {
  invalidFieldValue(SECOND, second);

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.jaxp-ri

setSecond(endSeconds.intValue());
BigDecimal tempFracSeconds = endSeconds.subtract(new BigDecimal(BigInteger.valueOf((long) getSecond())));
if (tempFracSeconds.compareTo(DECIMAL_ZERO) < 0) {
  setFractionalSecond(DECIMAL_ONE.add(tempFracSeconds));
  if (getSecond() == 0) {
    setSecond(59);
    carry = carry.subtract(BigInteger.ONE);
  } else {
    setSecond(getSecond() - 1);
      break;
    case SECOND:
      setSecond(DatatypeConstants.FIELD_UNDEFINED);
      setFractionalSecond(null);
      break;

代码示例来源:origin: com.sun.xml.parsers/jaxp-ri

setSecond(endSeconds.intValue());
BigDecimal tempFracSeconds = endSeconds.subtract(new BigDecimal(BigInteger.valueOf((long) getSecond())));
if (tempFracSeconds.compareTo(DECIMAL_ZERO) < 0) {
  setFractionalSecond(DECIMAL_ONE.add(tempFracSeconds));
  if (getSecond() == 0) {
    setSecond(59);
    carry = carry.subtract(BigInteger.ONE);
  } else {
    setSecond(getSecond() - 1);
      break;
    case SECOND:
      setSecond(DatatypeConstants.FIELD_UNDEFINED);
      setFractionalSecond(null);
      break;

代码示例来源:origin: com.sun.xml.parsers/jaxp-ri

setSecond(parseInt(2, 2));

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.jaxp-ri

setSecond(parseInt(2, 2));

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com