{"id":18475679,"url":"https://github.com/i-al-istannen/htmljavadocparser","last_synced_at":"2025-05-13T15:16:42.748Z","repository":{"id":47568294,"uuid":"179091314","full_name":"I-Al-Istannen/HtmlJavadocParser","owner":"I-Al-Istannen","description":"A parser API for html javadoc.","archived":false,"fork":false,"pushed_at":"2022-09-01T23:04:48.000Z","size":97,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-16T19:47:58.309Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/I-Al-Istannen.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-04-02T14:06:12.000Z","updated_at":"2019-06-12T20:34:52.000Z","dependencies_parsed_at":"2022-09-02T18:30:36.882Z","dependency_job_id":null,"html_url":"https://github.com/I-Al-Istannen/HtmlJavadocParser","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/I-Al-Istannen%2FHtmlJavadocParser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/I-Al-Istannen%2FHtmlJavadocParser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/I-Al-Istannen%2FHtmlJavadocParser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/I-Al-Istannen%2FHtmlJavadocParser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/I-Al-Istannen","download_url":"https://codeload.github.com/I-Al-Istannen/HtmlJavadocParser/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253969282,"owners_count":21992265,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-06T10:35:09.467Z","updated_at":"2025-05-13T15:16:42.275Z","avatar_url":"https://github.com/I-Al-Istannen.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"## About\nThis repo contains a small API that allows you interact and query a html-based Javadoc in a similar way to Java reflection.\n\n## Usage\nThe starting point is the `JavadocApi`.\nYou can then search for types or packages via the index the `JavadocApi` will return you.\n\n#### A small example to get the return type of the `ofEntries` method of `Map`:\n```java\nJavadocClass string = (JavadocClass) javadocApi.getIndex()\n    .getTypeForFullNameOrError(\"java.util.Map\");\nstring.getMethods().stream()\n    .filter(m -\u003e m.getSimpleName().equals(\"ofEntries\"))\n    .findFirst()\n    .ifPresent(invocable -\u003e System.out.println(invocable.getReturnType()));\n\n// Prints:\nJInterface{java.util.Map}\n```\n\n## Caveats\n* Generic type parsing is implemented, but apart from the `getGenericType` methods the only information you will receive is the *name* of the type.  \n  This means that `toArray(T[] ts)` will only tell you the parameter is of type `T[]`\n  but won't provide any more information about `T`.\n* I am fairly certain I have missed quite a few aspects of the HTML Javadoc format, so I'd expect it to randomly not like input\n\n## Dependencies\n* JSoup\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fi-al-istannen%2Fhtmljavadocparser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fi-al-istannen%2Fhtmljavadocparser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fi-al-istannen%2Fhtmljavadocparser/lists"}