Java
Read the Javadoc for the main API: Message API
I made this library so that I can use it in all of my java projects without writing the same codes over and over again
- It doesn't need to be instantiated
- It has 10 static methods
- The notification modes are:
- Info message on console (It has new line character at the end)
- Info message as server response
- Info message as server mono response (Reactive)
- Success message on console (It has new line character at the end)
- Success message as server response
- Success message as server mono response (Reactive)
- Error message on console (It has new line character at the end)
- Error message as server response
- Error message as server mono response (Reactive)
- Instantiation Error message (Shows Java Unsupported Operation Exception)
- Java
- Java Spring Boot
- 💀 Minimum Java Version:
21
<dependency> <groupId>best.skn</groupId> <artifactId>skn-java-message</artifactId> <version>1.3.0</version> </dependency>
implementation("best.skn:skn-java-message:1.3.0")
import best.skn.utils.message.Message;
public class Cat { public Cat() { System.out.print(Message.infoConsole("Cat Class Instantiated!")); } }
public class Person { private Person() { Message.throwInstantiationError(); } }
- 👩🎨
Prodipta Das Logno& 🧛♀️Atoshi Sarker Prithula: The two most special ladies of my life. My best wishes will always be with you two. May you two always be happy. - 💯
My Parents: The greatest treasures of my life ever.
Copyright (C) 2024 SKN Shukhan
Licensed under the Apache License, Version 2.0