SYMBOL INDEX (63 symbols across 6 files) FILE: src/main/java/emoji4j/AbstractEmoji.java class AbstractEmoji (line 10) | public abstract class AbstractEmoji { method htmlifyHelper (line 29) | protected static String htmlifyHelper(String text, boolean isHex, bool... FILE: src/main/java/emoji4j/Emoji.java class Emoji (line 13) | @JsonIgnoreProperties(ignoreUnknown = true) method getEmoji (line 36) | public String getEmoji() { method setEmoji (line 40) | public void setEmoji(String emoji) { method getAliases (line 52) | public List getAliases() { method setAliases (line 56) | public void setAliases(List aliases) { method getHexHtml (line 64) | public String getHexHtml() { method setHexHtml (line 68) | public void setHexHtml(String hexHtml) { method getDecimalHtml (line 83) | public String getDecimalHtml() { method setDecimalHtml (line 87) | public void setDecimalHtml(String decimalHtml) { method getEmoticons (line 103) | public List getEmoticons() { method setEmoticons (line 107) | public void setEmoticons(List emoticons) { method getDecimalSurrogateHtml (line 114) | public String getDecimalSurrogateHtml() { method setDecimalSurrogateHtml (line 118) | public void setDecimalSurrogateHtml(String decimalSurrogateHtml) { method getDecimalHtmlShort (line 122) | public String getDecimalHtmlShort() { method setDecimalHtmlShort (line 126) | public void setDecimalHtmlShort(String decimalHtmlShort) { method getHexHtmlShort (line 130) | public String getHexHtmlShort() { method setHexHtmlShort (line 134) | public void setHexHtmlShort(String hexHtmlShort) { FILE: src/main/java/emoji4j/EmojiManager.java class EmojiManager (line 16) | public class EmojiManager { method data (line 37) | public static List data() { method getEmoticonRegexPattern (line 45) | public static Pattern getEmoticonRegexPattern() { method processEmoticonsToRegex (line 53) | private static void processEmoticonsToRegex() { method addStopWords (line 81) | public static void addStopWords(String... stopwords) { method clearStopWords (line 95) | public static void clearStopWords() { method getAsciiEmojiRegex (line 100) | private static Pattern getAsciiEmojiRegex(List emojiList) { FILE: src/main/java/emoji4j/EmojiUtils.java class EmojiUtils (line 18) | public class EmojiUtils extends AbstractEmoji { method getEmoji (line 28) | public static Emoji getEmoji(String code) { method isEmoji (line 59) | public static boolean isEmoji(String code) { method emojify (line 69) | public static String emojify(String text) { method emojify (line 74) | private static String emojify(String text, int startIndex) { method processStringWithRegex (line 93) | private static String processStringWithRegex(String text, Pattern patt... method countEmojis (line 160) | public static int countEmojis(String text) { method htmlify (line 183) | public static String htmlify(String text) { method htmlify (line 188) | public static String htmlify(String text, boolean asSurrogate) { method hexHtmlify (line 200) | public static String hexHtmlify(String text) { method shortCodify (line 213) | public static String shortCodify(String text) { method removeAllEmojis (line 238) | public static String removeAllEmojis(String emojiText) { FILE: src/test/java/emoji4j/EmojiTest.java class EmojiTest (line 7) | public class EmojiTest { method testEmojiByUnicode (line 9) | @Test method testEmojiByShortCode (line 25) | @Test method testEmojiByShortCodeWithColons (line 37) | @Test method testEmojiByHexHtml (line 49) | @Test method testEmojiByDecimalHtml (line 58) | @Test method testIsEmoji (line 67) | @Test method testEmojify1 (line 80) | @Test method testEmojify2 (line 94) | @Test method testCountEmojis (line 107) | @Test method testHtmlify (line 113) | @Test method testHexHtmlify (line 129) | @Test method testShortCodifyFromEmojis (line 143) | @Test method testShortCodifyFromEmoticons (line 152) | @Test method testShortCodifyFromHtmlEntities (line 164) | @Test method removeAllEmojisTest (line 178) | @Test method surrogateDecimalToEmojiTest (line 186) | @Test method toSurrogateDecimalAndBackTest (line 200) | @Test method surrogateToHTMLTest (line 211) | @Test method testStopWords (line 233) | @Test method testClearStopWords (line 244) | @Test FILE: src/test/java/emoji4j/EmoticonTest.java class EmoticonTest (line 7) | public class EmoticonTest { method testEmojiByEmoticons (line 8) | @Test method testParseEmoticons (line 21) | @Test method testIssue5 (line 31) | @Test