Package net.minecraft.text
Interface CharacterVisitor
- All Known Implementing Classes:
- TextHandler.LineBreakingVisitor,- TextHandler.WidthLimitingVisitor,- TextRenderer.Drawer
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A visitor for single characters in a string.
- Mappings:
- Namespace - Name - named - net/minecraft/text/CharacterVisitor- intermediary - net/minecraft/class_5224- official - aym
- 
Method Summary
- 
Method Details- 
acceptVisits a single character.Multiple surrogate characters are converted into one single codePointwhen passed into this method.- Parameters:
- index- the current index of the character
- style- the style of the character, containing formatting and font information
- codePoint- the code point of the character
- Returns:
- trueto continue visiting other characters, or- falseto terminate the visit
- Mappings:
- Namespace - Name - Mixin selector - named - accept- Lnet/minecraft/text/CharacterVisitor;accept(ILnet/minecraft/text/Style;I)Z- intermediary - accept- Lnet/minecraft/class_5224;accept(ILnet/minecraft/class_2583;I)Z- official - accept- Laym;accept(ILxm;I)Z
 
 
-