<!-- Auto-generated — do not edit by hand -->
# Java Period Audit for PTC-Lisp
> **Warning:** This file is auto-generated by `mix ptc.gen_docs` from `priv/java_compat_audit.exs`.
> Manual edits will be overwritten. Edit `priv/java_compat_audit.exs` instead.
Curated LLM-compatibility target for `java.time.Period`.
See also: [Function Reference](../function-reference.md) | [Namespace Coverage](index.md) | [Clojure Core Audit](clojure-core-audit.md) | [Clojure String Audit](clojure-string-audit.md) | [Clojure Set Audit](clojure-set-audit.md) | [Clojure Walk Audit](clojure-walk-audit.md) | [Java Math Audit](java-math-audit.md) | [Java Boolean Audit](java-lang-boolean-audit.md) | [Java Double Audit](java-lang-double-audit.md) | [Java Float Audit](java-lang-float-audit.md) | [Java Integer Audit](java-lang-integer-audit.md) | [Java Long Audit](java-lang-long-audit.md) | [Java String Audit](java-lang-string-audit.md) | [Java System Audit](java-lang-system-audit.md) | [Java LocalDate Audit](java-time-local-date-audit.md) | [Java Instant Audit](java-time-instant-audit.md) | [Java Duration Audit](java-time-duration-audit.md) | [Java Date Audit](java-util-date-audit.md)
## Summary
Coverage excludes `not_relevant` entries: `supported / (supported + candidate + not_classified)`.
| Status | Count |
|--------|-------|
| Supported | 0 |
| Candidate | 4 |
| Not Relevant | 0 |
| Not Classified | 0 |
| Relevant Target | 4 |
| Coverage | 0/4 (0.0%) |
| **Total** | **4** |
## Details
| Var | Status | Description | Notes |
|-----|--------|-------------|-------|
| `.getDays` | 🔲 candidate | Return day component of a Period | Deferred for issue #1019 because this is the day component, not total days; easy to misuse for analytics. |
| `Period/between` | 🔲 candidate | Period between two dates | Deferred for issue #1019; `Period.getDays` is a component value, not total days. Use `.toEpochDay` subtraction for LocalDate day differences. |
| `Period/ofDays` | 🔲 candidate | Construct period from days | Useful companion for bounded Period support. |
| `Period/parse` | 🔲 candidate | Parse ISO-8601 period string | Useful but lower-priority than between/getDays. |