{"id":18135541,"url":"https://github.com/whitfin/dottie","last_synced_at":"2026-05-04T07:41:29.052Z","repository":{"id":144563346,"uuid":"95337991","full_name":"whitfin/dottie","owner":"whitfin","description":"A small library for dealing with JSON dot notation.","archived":false,"fork":false,"pushed_at":"2017-06-26T02:07:50.000Z","size":16,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-12T22:43:37.611Z","etag":null,"topics":["dot-notation","json","parsing-library"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/whitfin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-06-25T04:18:20.000Z","updated_at":"2019-01-25T13:26:58.000Z","dependencies_parsed_at":null,"dependency_job_id":"811c6039-761c-4015-bf57-4b77c0dcc473","html_url":"https://github.com/whitfin/dottie","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whitfin%2Fdottie","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whitfin%2Fdottie/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whitfin%2Fdottie/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whitfin%2Fdottie/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/whitfin","download_url":"https://codeload.github.com/whitfin/dottie/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247517863,"owners_count":20951714,"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":["dot-notation","json","parsing-library"],"created_at":"2024-11-01T14:08:10.971Z","updated_at":"2026-05-04T07:41:24.031Z","avatar_url":"https://github.com/whitfin.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# dottie\n\nDottie is a super simple dot notation parser/generator for Java. It provides an easy way to join/split notation from/to individual keys.\n\n### Installation\n\nDottie is available on JCenter, and so can be used via Maven and/or Gradle pretty easily. Just add the dependency as normal (you might have to check for the latest version, rather than what's shown below):\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003eio.whitfin\u003c/groupId\u003e\n    \u003cartifactId\u003edottie\u003c/artifactId\u003e\n    \u003cversion\u003e1.0.0\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n### Usage\n\nThe main functionality provided in Dottie is the ability to split/join notation easily. This can be done by two main classes, `NotationJoiner` and `NotationSplitter`:\n\n```java\nimport io.whitfin.dottie.joiner.NotationJoiner;\nimport io.whitfin.dottie.segment.NotationSegment;\nimport io.whitfin.dottie.splitter.NotationSplitter;\n    \nimport java.util.List;\n    \npublic class DottieExample {\n    \n    public static void main(String[] args) {\n        // join props/indices into a string\n        String notation = new NotationJoiner()\n            .append(\"this\")\n            .append(\"is\")\n            .append(\"test\")\n            .append(0)\n            .append(\"!\")\n            .toString();\n            \n        // this.is.test[0][\"!\"]\n        System.out.println(notation);\n        \n        // split it back into keys\n        List\u003cNotationSegment\u003e keys = NotationSplitter.split(notation);\n        \n        // 5 keys are returned\n        System.out.println(keys.size());\n    }\n    \n}\n```\n\nFor any other functionality, please see the documentation or the code itself.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwhitfin%2Fdottie","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwhitfin%2Fdottie","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwhitfin%2Fdottie/lists"}