MCPcopy Create free account
hub / github.com/MenoData/Time4J / isBefore

Method isBefore

base/src/main/java/net/time4j/Moment.java:1077–1083  ·  view source on GitHub ↗
(UniversalTime temporal)

Source from the content-addressed store, hash-verified

1075 }
1076
1077 @Override
1078 public boolean isBefore(UniversalTime temporal) {
1079
1080 Moment other = Moment.from(temporal);
1081 return (this.compareTo(other) < 0);
1082
1083 }
1084
1085 @Override
1086 public boolean isSimultaneous(UniversalTime temporal) {

Callers 4

astronomyMethod · 0.95
atOrAfterMethod · 0.95
beforeMethod · 0.95
randomMethod · 0.95

Calls 2

fromMethod · 0.95
compareToMethod · 0.95

Tested by 1

astronomyMethod · 0.76