Warning: This file is auto-generated by
mix ptc.gen_docsfrompriv/java_interop.exs. Manual edits will be overwritten. Editpriv/java_interop.exsinstead.
Curated LLM-compatibility target for java.util.Date.
See also: Function Reference | Namespace Coverage | Clojure Core Audit | Clojure String Audit | Clojure Set Audit | Clojure Walk Audit | Java Math Audit | Java Boolean Audit | Java Double Audit | Java Float Audit | Java Integer Audit | Java Long Audit | Java String Audit | Java System Audit | Java LocalDate Audit | Java Instant Audit | Java Duration Audit | Java Period Audit
Summary
Coverage excludes not_relevant entries: supported / (supported + candidate + not_classified).
| Status | Count |
|---|---|
| Supported | 4 |
| Candidate | 0 |
| Not Relevant | 3 |
| Not Classified | 0 |
| Relevant Target | 4 |
| Coverage | 4/4 (100.0%) |
| Total | 7 |
Details
| Var | Status | Description | Notes |
|---|---|---|---|
.after | ✅ supported | Date ordering predicate | Class-owned java.util.Date comparison. |
.before | ✅ supported | Date ordering predicate | Class-owned java.util.Date comparison. |
.getTime | ✅ supported | Exact epoch timestamp in milliseconds | Works only on native java.util.Date values. |
.isAfter | ❌ not_relevant | Method belongs to java.time classes, not java.util.Date | Removed from Date when class-aware temporal dispatch landed. |
.isBefore | ❌ not_relevant | Method belongs to java.time classes, not java.util.Date | Removed from Date when class-aware temporal dispatch landed. |
.setTime | ❌ not_relevant | Mutate Date timestamp | Mutable Java object operations are outside the sandbox model. |
java.util.Date. | ✅ supported | Construct a legacy Date value | Numeric input is exact epoch milliseconds. DIV-51: string input uses a deterministic bounded legacy English grammar, admits dates on or after 1582-10-15, and uses UTC when no zone is present. |