Skip to content

Commit

Permalink
♻️ refactor: update icon type #3
Browse files Browse the repository at this point in the history
  • Loading branch information
pnguyen215 committed Jul 14, 2024
1 parent 6055198 commit 30486e3
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions plugin/src/main/groovy/org/unify4j/model/enums/IconType.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
package org.unify4j.model.enums;

// @formatter:off
public enum IconType {

SUCCESS("\uD83D\uDFE2"),
ERROR("\uD83D\uDD34"),
WARN("\uD83D\uDFE1"),
DEBUG("\uD83D\uDD35"),
TRACE("\uD83D\uDFE0"),
BACKGROUND("\uD83D\uDFE3"),
CHECKED("\uD83D\uDD35");

private final String code;

IconType(String code) {
this.code = code;
}

public String getCode() {
return code;
}
}
// @formatter:on

0 comments on commit 30486e3

Please sign in to comment.