org.joda.time.LocalTime.getSecondOfMinute()方法的使用及代码示例

x33g5p2x  于2022-01-23 转载在 其他  
字(7.4k)|赞(0)|评价(0)|浏览(174)

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

LocalTime.getSecondOfMinute介绍

[英]Get the second of minute field value.
[中]获取分钟的秒字段值。

代码示例

代码示例来源:origin: joda-time/joda-time

  1. /**
  2. * Returns a copy of this datetime with the specified time, retaining the date fields.
  3. * <p>
  4. * If the new time is invalid due to the time-zone, the time will be adjusted.
  5. * <p>
  6. * This instance is immutable and unaffected by this method call.
  7. *
  8. * @param time the local time
  9. * @return a copy of this datetime with a different time
  10. * @throws IllegalArgumentException if the time-of-day is invalid for the date
  11. * @throws NullPointerException if the time is null
  12. */
  13. public DateTime withTime(LocalTime time) {
  14. return withTime(
  15. time.getHourOfDay(), time.getMinuteOfHour(), time.getSecondOfMinute(), time.getMillisOfSecond());
  16. }

代码示例来源:origin: JodaOrg/joda-time

  1. /**
  2. * Returns a copy of this datetime with the specified time, retaining the date fields.
  3. * <p>
  4. * If the new time is invalid due to the time-zone, the time will be adjusted.
  5. * <p>
  6. * This instance is immutable and unaffected by this method call.
  7. *
  8. * @param time the local time
  9. * @return a copy of this datetime with a different time
  10. * @throws IllegalArgumentException if the time-of-day is invalid for the date
  11. * @throws NullPointerException if the time is null
  12. */
  13. public DateTime withTime(LocalTime time) {
  14. return withTime(
  15. time.getHourOfDay(), time.getMinuteOfHour(), time.getSecondOfMinute(), time.getMillisOfSecond());
  16. }

代码示例来源:origin: joda-time/joda-time

  1. getYear(), getMonthOfYear(), getDayOfMonth(),
  2. time.getHourOfDay(), time.getMinuteOfHour(),
  3. time.getSecondOfMinute(), time.getMillisOfSecond(), chrono);

代码示例来源:origin: JodaOrg/joda-time

  1. getYear(), getMonthOfYear(), getDayOfMonth(),
  2. time.getHourOfDay(), time.getMinuteOfHour(),
  3. time.getSecondOfMinute(), time.getMillisOfSecond(), chrono);

代码示例来源:origin: apache/drill

  1. int t = ((TimeExpression)valueArg).getTime();
  2. LocalTime lT = LocalTime.fromMillisOfDay(t);
  3. this.value = KeyValueBuilder.initFrom(new OTime(lT.getHourOfDay(), lT.getMinuteOfHour(), lT.getSecondOfMinute(), lT.getMillisOfSecond()));
  4. this.path = path;
  5. return true;

代码示例来源:origin: LukeL99/joda-time-mybatis

  1. public void setParameter(PreparedStatement ps, int i, Object parameter, JdbcType jdbcType) throws SQLException
  2. {
  3. LocalTime time = (LocalTime) parameter;
  4. if (time != null)
  5. {
  6. DateTime datetime = new DateTime(1970, 1, 1, time.getHourOfDay(), time.getMinuteOfHour(),
  7. time.getSecondOfMinute(), 0);
  8. ps.setTime(i, new Time(datetime.toDate().getTime()));
  9. }
  10. else
  11. {
  12. ps.setTime(i, null);
  13. }
  14. }

代码示例来源:origin: org.jadira.usertype/usertype.core

  1. @Override
  2. public String toNonNullValue(LocalTime value) {
  3. if (value.getMillisOfSecond() == 0) {
  4. if (value.getSecondOfMinute() == 0) {
  5. return Formatter.LOCAL_TIME_NOSECONDS_PRINTER.print(value);
  6. }
  7. return Formatter.LOCAL_TIME_NOMILLIS_PRINTER.print(value);
  8. } else {
  9. return value.toString();
  10. }
  11. }
  12. }

代码示例来源:origin: fenix-framework/fenix-framework

  1. public static java.sql.Time getValueForLocalTime(LocalTime value) {
  2. // Creating the java.sql.Time with hours, minutes, and seconds
  3. // creates an instant interpreting those values in the default
  4. // time zone. This is needed because currently OJB is sending
  5. // instances of TIME to a preparedStatement without specifying
  6. // the time zone, which means that it will be interpreted as
  7. // being the default time zone.
  8. //
  9. // So, beware, that we may not change this into a new
  10. // java.sql.Time(value.getMillisOfDay()), because, in that
  11. // case, the millis would be interpreted as being an instant
  12. // relative to the 01/01/1970 00:00:00 GMT.
  13. return (value == null ? null : new java.sql.Time(value.getHourOfDay(), value.getMinuteOfHour(), value.getSecondOfMinute()));
  14. }

代码示例来源:origin: org.jresearch.commons.base/org.jresearch.commons.base.domain

  1. public static java.time.LocalTime localJodaJavaTime(@Nonnull final LocalTime time) {
  2. return java.time.LocalTime.of(time.getHourOfDay(), time.getMinuteOfHour(), time.getSecondOfMinute());
  3. }

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

  1. LocalTime localTime = new LocalTime(1,0,0,0);
  2. java.sql.Time sqlTime = new java.sql.Time(localTime.getHourOfDay(), localTime.getMinuteOfHour(), localTime.getSecondOfMinute())

代码示例来源:origin: bingoohuang/eql

  1. @Override public Object map(Object obj) {
  2. val t = (LocalTime) obj;
  3. return Time.valueOf(java.time.LocalTime.of(t.getHourOfDay(), t.getMinuteOfHour(), t.getSecondOfMinute(), t.getMillisOfSecond()));
  4. }
  5. }

代码示例来源:origin: FenixEdu/fenixedu-academic

  1. /**
  2. * Constructs a HourMinuteSecond from a LocalTime, using exactly the same
  3. * fields, but ignoring the millis.
  4. *
  5. * @return the created HourMinuteSecond
  6. */
  7. public static HourMinuteSecond fromLocalTime(LocalTime time) {
  8. return new HourMinuteSecond(time.getHourOfDay(), time.getMinuteOfHour(), time.getSecondOfMinute());
  9. }

代码示例来源:origin: qcadoo/mes

  1. private DateTime convertToDateTime(final DateTime currentDate, final LocalTime time) {
  2. return new DateTime(currentDate).withTime(time.getHourOfDay(), time.getMinuteOfHour(), time.getSecondOfMinute(),
  3. time.getMillisOfSecond());
  4. }

代码示例来源:origin: org.jadira.usertype/usertype.core

  1. @Override
  2. public TimeOfDay fromNonNullValue(Timestamp value) {
  3. DateTime dateTime = new DateTime(value.getTime());
  4. LocalTime localTime = dateTime.toLocalTime();
  5. final TimeOfDay timeOfDay = new TimeOfDay(localTime.getHourOfDay(), localTime.getMinuteOfHour(), localTime.getSecondOfMinute(), localTime.getMillisOfSecond(), localTime.getChronology());
  6. return timeOfDay;
  7. }

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

  1. Date datePart= ...; // The date parsed from the first user input
  2. String userTimeInput = ...; // The time of day from the user
  3. Locale userLocale = ...;
  4. DateTimeZone userTimeZone = ...;
  5. DateTime dateInUserTimeZone = new DateTime(datePart, userTimeZone);
  6. DateTimeFormatter formatter = DateTimeFormat.shortTime().withLocale(userLocale);
  7. LocalTime time = formatter.parseLocalTime(userTimeInput);
  8. Date newDate = dateInUserTimeZone.withTime(time.getHourOfDay(), time.getMinuteOfHour(),
  9. time.getSecondOfMinute(), time.getMillisOfSecond()).toDate();

代码示例来源:origin: org.jadira.usertype/usertype.core

  1. @Override
  2. public TimeOfDay fromNonNullValue(Time value) {
  3. DateTime dateTime = new DateTime(value.getTime());
  4. LocalTime localTime = dateTime.toLocalTime();
  5. final TimeOfDay timeOfDay = new TimeOfDay(localTime.getHourOfDay(), localTime.getMinuteOfHour(), localTime.getSecondOfMinute(), localTime.getMillisOfSecond(), localTime.getChronology());
  6. return timeOfDay;
  7. }

代码示例来源:origin: org.jadira.usertype/usertype.jodatime

  1. @Override
  2. public TimeOfDay fromNonNullValue(Timestamp value) {
  3. final LocalTime localTime = Formatter.LOCAL_DATETIME_PARSER.parseDateTime(value.toString()).toLocalTime();
  4. final TimeOfDay timeOfDay = new TimeOfDay(localTime.getHourOfDay(), localTime.getMinuteOfHour(), localTime.getSecondOfMinute(), localTime.getMillisOfSecond(), localTime.getChronology());
  5. return timeOfDay;
  6. }

代码示例来源:origin: org.jadira.usertype/usertype.core

  1. @Override
  2. public Timestamp toNonNullValue(LocalTime value) {
  3. DateTime zonedValue = new LocalDateTime(
  4. 1970,1,1,value.getHourOfDay(), value.getMinuteOfHour(), value.getSecondOfMinute(), value.getMillisOfSecond(), value.getChronology()
  5. ).toDateTime();
  6. final Timestamp timestamp = new Timestamp(zonedValue.getMillis());
  7. return timestamp;
  8. }
  9. }

代码示例来源:origin: org.jadira.usertype/usertype.core

  1. @Override
  2. public Time toNonNullValue(LocalTime value) {
  3. DateTime zonedValue = new LocalDateTime(
  4. 1970,1,1,value.getHourOfDay(), value.getMinuteOfHour(), value.getSecondOfMinute(), value.getMillisOfSecond(), value.getChronology()
  5. ).toDateTime();
  6. final Time time = new Time(zonedValue.getMillis());
  7. return time;
  8. }
  9. }

代码示例来源:origin: arnaudroger/SimpleFlatMapper

  1. @Override
  2. public java.time.LocalTime convert(LocalTime in, Context context) throws Exception {
  3. if (in == null) return null;
  4. return java.time.LocalTime.of(in.getHourOfDay(), in.getMinuteOfHour(), in.getSecondOfMinute(), in.getMillisOfSecond() * 1000);
  5. }
  6. }

相关文章