Uses of Enum Class
net.fellbaum.jemoji.EmojiType
Packages that use EmojiType
-
Uses of EmojiType in net.fellbaum.jemoji
Methods in net.fellbaum.jemoji that return EmojiTypeModifier and TypeMethodDescriptionstatic EmojiTypeReturns the enum constant of this class with the specified name.static EmojiType[]EmojiType.values()Returns an array containing the constants of this enum class, in the order they are declared.Method parameters in net.fellbaum.jemoji with type arguments of type EmojiTypeModifier and TypeMethodDescriptionstatic booleanEmojiManager.containsAnyEmoji(String text, EnumSet<EmojiType> emojiType) Checks if the given text contains emojis.EmojiManager.extractEmojis(String text, EnumSet<EmojiType> emojiType) Extracts all emojis from the given text.EmojiManager.extractEmojisInOrder(String text, EnumSet<EmojiType> emojiType) Extracts all emojis from the given text in the order they appear.static List<IndexedEmoji>EmojiManager.extractEmojisInOrderWithIndex(String text, EnumSet<EmojiType> emojiType) Extracts all emojis from the given text in the order they appear.static StringEmojiManager.removeAllEmojis(String text, EnumSet<EmojiType> emojiType) Removes all emojis from the given text.static StringEmojiManager.removeAllEmojisExcept(String text, Collection<Emoji> emojisToKeep, EnumSet<EmojiType> emojiType) Removes all emojis except the given emojis from the given text.static StringEmojiManager.removeEmojis(String text, Collection<Emoji> emojisToRemove, EnumSet<EmojiType> emojiType) Removes the given emojis from the given text.static StringEmojiManager.replaceAllEmojis(String text, String replacementString, EnumSet<EmojiType> emojiType) Replaces all emojis in the text with the given replacement string.static StringEmojiManager.replaceAllEmojis(String text, Function<Emoji, String> replacementFunction, EnumSet<EmojiType> emojiType) Replaces all emojis in the text with the given replacement function.static StringEmojiManager.replaceEmojis(String text, String replacementString, Collection<Emoji> emojisToReplace, EnumSet<EmojiType> emojiType) Replaces the given emojis with the given replacement string.static StringEmojiManager.replaceEmojis(String text, Function<Emoji, String> replacementFunction, Collection<Emoji> emojisToReplace, EnumSet<EmojiType> emojiType) Replaces all emojis in the text with the given replacement function. -
Uses of EmojiType in net.fellbaum.jemoji.internal
Methods in net.fellbaum.jemoji.internal with parameters of type EmojiTypeModifier and TypeMethodDescriptionstatic @Nullable UniqueEmojiFoundResultEmojiUtils.findUniqueEmoji(int[] textCodePointsArray, int textIndex, long textCodePointsLength, EmojiType type) Finds a unique emoji starting at the position textIndex in the textCodePointsArray.