emoji

Emoji SDK

License

License

GroupId

GroupId

io.github.yogonza524
ArtifactId

ArtifactId

emoji
Last Version

Last Version

0.0.2
Release Date

Release Date

Type

Type

jar
Description

Description

emoji
Emoji SDK
Project URL

Project URL

https://github.com/yogonza524/emoji
Source Code Management

Source Code Management

https://github.com/yogonza524/emoji/tree/master/

Download emoji

How to add to project

<!-- https://jarcasting.com/artifacts/io.github.yogonza524/emoji/ -->
<dependency>
    <groupId>io.github.yogonza524</groupId>
    <artifactId>emoji</artifactId>
    <version>0.0.2</version>
</dependency>
// https://jarcasting.com/artifacts/io.github.yogonza524/emoji/
implementation 'io.github.yogonza524:emoji:0.0.2'
// https://jarcasting.com/artifacts/io.github.yogonza524/emoji/
implementation ("io.github.yogonza524:emoji:0.0.2")
'io.github.yogonza524:emoji:jar:0.0.2'
<dependency org="io.github.yogonza524" name="emoji" rev="0.0.2">
  <artifact name="emoji" type="jar" />
</dependency>
@Grapes(
@Grab(group='io.github.yogonza524', module='emoji', version='0.0.2')
)
libraryDependencies += "io.github.yogonza524" % "emoji" % "0.0.2"
[io.github.yogonza524/emoji "0.0.2"]

Dependencies

compile (3)

Group / Artifact Type Version
org.apache.commons : commons-math3 jar 3.6.1
org.apache.commons : commons-lang3 jar 3.0
org.pitest : pitest-junit5-plugin jar 0.12

runtime (1)

Group / Artifact Type Version
com.google.guava : guava jar 29.0-jre

test (1)

Group / Artifact Type Version
org.junit.jupiter : junit-jupiter-api jar 5.6.2

Project Modules

There are no modules declared in this project.

Maven Artifact Code size

Emojis

Simple Java library for use emojis 😄

Add to your project

To add as dependency using Maven, you should have at pom.xml:

<dependency>
  <groupId>io.github.yogonza524</groupId>
  <artifactId>emoji</artifactId>
  <version>0.0.2</version>
</dependency>

To add as dependency using Gradle, you should have at build.gradle:

repositories {
    mavenCentral()
}

dependencies {
    implementation "io.github.yogonza524:emoji:0.0.2"
}

Examples

Yay

  1. Use an emoji
Emoji bowtie = Emoji.bowtie();

System.out.println("Code: " + bowtie.getCode()); // :bowtie:
System.out.println("Icon: " + bowtie.getImageUrl()); // https://github.githubassets.com/images/icons/emoji/bowtie.png
  1. Find an emoji
List<Emoji> man = Emoji.find("man"); // Return a list of Emijis when name contains "man"
  1. List all Emojis
Emoji.all().stream().forEach(System.out::println); // Show all Emojis available
  1. Get the URL as markdown
Emoji bowtie = Emoji.bowtie();
System.out.println(bowtie.markdown()); //![:bowtie:](https://github.githubassets.com/images/icons/emoji/bowtie.png)

Versions

Version
0.0.2
0.0.1