Morphoide [v0.3.8]
Morphoide It is a dynamic library open source that is easy to use and with good documentation that tries to achieve a more user-friendly experience when programming with the Java programming language.
<!-- https://mvnrepository.com/artifact/io.github.zelechos/Morphoide -->
<dependency>
<groupId>io.github.zelechos</groupId>
<artifactId>Morphoide</artifactId>
<version>0.3.8</version>
</dependency>// https://mvnrepository.com/artifact/io.github.zelechos/Morphoide
implementation group: 'io.github.zelechos', name: 'Morphoide', version: '0.3.8'Just import Morphoide and you are ready to use all the subroutines
import io.github.morphoide.*;
public class Main {
public static void main(String[] args) {
String text = "Morphoide";
// First Example
String response = Morphoide.meta()
.reverseString(text)
.morph();
// or
String response = Morphoide.meta(text)
.reverseString()
.morph();
// response : ediohproM
}
}All Morphoide subroutines use Chaining Method for fast and simple implementation you don't need to create an instance to use Morphoide
import static io.github.morphoide.Morphoide.*;
public class Main {
public static void main(String[] args) {
List<String> list = List.of(M,o,r,p,h,o,i,d,e);
var response = Morphoide.meta(list)
.stringConstruction() // Morphoide
.reverseString() // ediohproM
.stringDestructionToList() // [e, d, i, o, h, p, r, o, M]
.stringConstruction() // ediohproM
.morph();
// response : ediohproM
}
}| Date | Version | Description |
|---|---|---|
| 20/12/2021 | v0.1.4 | Create method separationByTwoPoints() |
| 26/03/2023 | v0.2.0 | Create different subrutines |
| 31/03/2023 | v0.2.2 | The pom.xml was created |
| 09/04/2023 | v0.2.3 | Restructuring the project |
| 17/05/2025 | v0.3.7 | Add new subrutines |
| 02/10/2025 | v0.3.8 | Add Idiom Chaning Subrutine |

