Package org.threeten.bp

Examples of org.threeten.bp.OffsetDateTime.toInstant()


  @Override
  public CompiledFunctionDefinition compile(final FunctionCompilationContext context, final Instant atInstant) {
    final OffsetDateTime odt = atInstant.atOffset(ZoneOffset.UTC);
    final OffsetDateTime start = odt.withHour(0).withMinute(0).withSecond(0).withNano(0); // Start of the UTC day
    final OffsetDateTime end = start.plusDays(1).minusNanos(1); // End of the UTC day
    return new Compiled(start.toInstant(), end.toInstant());
  }

}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.