Available Methods
- of ( )
- now ( )
- ofInstant ( )
- parse ( )
- with ( )
- ofStrict ( )
- toInstant ( )
- withZoneSameInstant ( )
- format ( )
- plusMonths ( )
- from ( )
- withZoneSameLocal ( )
- getYear ( )
- isBefore ( )
- equals ( )
- minusMonths ( )
- plusDays ( )
- toLocalDate ( )
- isAfter ( )
- getDayOfMonth ( )
- withYear ( )
- withSecond ( )
- getMinute ( )
- toEpochSecond ( )
- withLaterOffsetAtOverlap ( )
- withMonth ( )
- plusYears ( )
- withDayOfMonth ( )
- getSecond ( )
- withHour ( )
- withNano ( )
- compareTo ( )
- toOffsetDateTime ( )
- plusMinutes ( )
- getMonthValue ( )
- withMinute ( )
- minusYears ( )
- withEarlierOffsetAtOverlap ( )
- getNano ( )
- toString ( )
- getHour ( )
- toLocalDateTime ( )
- plusWeeks ( )
- plusHours ( )
- get ( )
- minusDays ( )
- withFixedOffsetZone ( )
- minusSeconds ( )
- minus ( )
- getZone ( )
- plusSeconds ( )
- minusWeeks ( )
- minusMinutes ( )
- truncatedTo ( )
- plus ( )
- toLocalTime ( )
- withDayOfYear ( )
- until ( )
- minusNanos ( )
- ofLocal ( )
- minusHours ( )
- getDayOfWeek ( )
- isEqual ( )
- getOffset ( )
- getMonth ( )
- plusNanos ( )
Related Classes
- java.util.Arrays
- java.io.File
- java.util.Collections
- java.util.Date
- java.util.concurrent.TimeUnit
- java.text.SimpleDateFormat
- java.util.Locale
- java.util.UUID
- java.util.stream.Collectors
- java.util.Calendar
- java.net.URI
- org.junit.Assert
- java.util.Optional
- java.nio.charset.StandardCharsets
- com.fasterxml.jackson.databind.ObjectMapper
- java.math.BigDecimal
- java.nio.file.Path
- java.util.stream.Stream
- java.lang.reflect.Type
- org.apache.commons.lang3.StringUtils
- java.util.TimeZone
- java.time.Instant
- java.time.Duration
- java.time.LocalDateTime
- com.google.common.collect.ImmutableList
Java Code Examples for java.time.ZonedDateTime#isEqual()
The following examples show how to use
java.time.ZonedDateTime#isEqual() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: GeZonedDateTime.java From yare with MIT License | 4 votes |
@Override protected Boolean evaluate(Object left, Object right) { ZonedDateTime cLeft = (ZonedDateTime) left; ZonedDateTime cRight = (ZonedDateTime) right; return cLeft.isAfter(cRight) || cLeft.isEqual(cRight); }
Example 2
Source File: LeZonedDateTime.java From yare with MIT License | 4 votes |
@Override protected Boolean evaluate(Object left, Object right) { ZonedDateTime cLeft = (ZonedDateTime) left; ZonedDateTime cRight = (ZonedDateTime) right; return cLeft.isBefore(cRight) || cLeft.isEqual(cRight); }
Example 3
Source File: EqualsTemporalInstant.java From rya with Apache License 2.0 | 4 votes |
@Override protected boolean relation(final ZonedDateTime d1, final ZonedDateTime d2) { Objects.requireNonNull(d1); Objects.requireNonNull(d2); return d1.isEqual(d2); }