Skip to content

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.

Notifications You must be signed in to change notification settings

Zelechos/Morphoide

Repository files navigation

Morphoide [v0.3.8]

Morphoide destroys the Single Responsibility Principle to be easier and faster to use

Morphoide

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.

"We love java and we want you to enjoy programming with java"

Morphoide

Maven

<!-- https://mvnrepository.com/artifact/io.github.zelechos/Morphoide -->
<dependency>
    <groupId>io.github.zelechos</groupId>
    <artifactId>Morphoide</artifactId>
    <version>0.3.8</version>
</dependency>

Gradle

// https://mvnrepository.com/artifact/io.github.zelechos/Morphoide
implementation group: 'io.github.zelechos', name: 'Morphoide', version: '0.3.8'

How to use ?? don't worry Morphoide is very easy to use

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
        
    }
}

Morphoide

Morphoide

Morphoide

Look at the library here!!

Download Morphoide

Current Version

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

Morphoide

Creator Information 👨‍💻


About

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.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published