Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
Fixed name of the package.
Added jar file that contains the whole library.
Added setup information in the README.
  • Loading branch information
StefanoTrv committed Sep 22, 2021
1 parent e857bbe commit 669f5c5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ A simple Java library for ICD-10-CM codes
* [Conclusion](#conclusion)

## Release notes
`none yet`
* **1.0.0**: Inital release

## Introduction
The objective of this library is to provide a simple instrument for dealing with **ICD-10-CM** codes in Java. It provides ways to check whether a code exists, find its ancestors and descendants, see the data associated with it, including its description, and much more.
Expand All @@ -79,6 +79,9 @@ The data used in this library was taken from the websites of the CDC and of the

All the classes in this library are contained in the package "`it.trvi.simpleicd10`".

## Setup
You can download the jar containing the most recent recent version of this library from the [releases page on Github](https://github.com/StefanoTrv/SimpleICD10CM-Java-edition/releases).

## The format of the codes
The codes of subcategories can be written in two different ways: with a dot (for example "I13.1") and with no dot (for example "I131"). The methods in this library can receive as input codes in both these formats. The codes returned by the functions will always be in the format with the dot.
You can easily change the format of a code by using the [`removeDot`](#removedotstring-code) and [`addDot`](#adddotstring-code) functions.
Expand Down
Binary file added SimpleICD10CM.jar
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package it.trvi.simpleicd10;
package it.trvi.simpleicd10cm;
import it.trvi.easyxml.*;

import java.io.IOException;
Expand Down

0 comments on commit 669f5c5

Please sign in to comment.