The list of methods to do OffsetDateTime are organized into topic(s).
E
cloneInternally(E source, Map visited) clone Internally
if (source == null) {
return null;
Class<?> clazz = source.getClass();
if (clazz.isEnum() || IMMUTABLES.contains(clazz)) {
return source;
if (clazz == Date.class) {
...
OffsetDateTime
convertDateToOffsetDateTime(Date date) Converts the old Date to a new OffsetDateTime , taking the UTC offset into account.
return OffsetDateTime.ofInstant(date.toInstant(), ZoneId.of("UTC"));
String
getCurrentISODate() get Current ISO Date
return ms2OffsetDateTime(System.currentTimeMillis()).format(ISO_DATE);
OffsetDateTime
getNowOdt() get Now Odt
return OffsetDateTime.now(ZoneOffset.UTC);
boolean
hasZone(TemporalAccessor date) has Zone
if (date == null) {
return false;
if (date instanceof ZonedDateTime) {
return true;
} else if (date instanceof OffsetDateTime) {
return true;
} else if (date instanceof OffsetTime) {
...