Morphoide [v0.2.3]
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.2.3</version>
</dependency>
// https://mvnrepository.com/artifact/io.github.zelechos/Morphoide
implementation group: 'io.github.zelechos', name: 'Morphoide', version: '0.2.3'
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) {
Morphoide.containsLowerCase("MORPHOIdE");
Morphoide.getAFirstCharacterFromString("morphoide");
Morphoide.validatePassword("password", 8 , 15);
Morphoide.factorial(10);
}
}
All Morphoide subroutines are static 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) {
containsSpecialCharacter("morphoide@gmail.com");
getListOfUniqueElements(List.of("morphoide","morphoide","java","pragmic","java"));
lengthIsOdd("password");
fibonacci(10);
}
}
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 |