Package net.minecraft.client.search
Interface TextSearcher<T>
A functional interface that allows searching with a text.
- Mappings:
Namespace Name official fne
intermediary net/minecraft/class_7454
named net/minecraft/client/search/TextSearcher
-
Method Summary
Modifier and TypeMethodDescriptionstatic <T> TextSearcher<T>
of()
Returns a searcher that always returns no results.static <T> TextSearcher<T>
Returns a searcher that searches fromvalues
.Returns the results of searching with the providedtext
.
-
Method Details
-
of
Returns a searcher that always returns no results.- Returns:
- a searcher that always returns no results
- Mappings:
Namespace Name Mixin selector official a
Lfne;a()Lfne;
intermediary method_43793
Lnet/minecraft/class_7454;method_43793()Lnet/minecraft/class_7454;
named of
Lnet/minecraft/client/search/TextSearcher;of()Lnet/minecraft/client/search/TextSearcher;
-
of
Returns a searcher that searches fromvalues
.- Parameters:
textsGetter
- a function that, when given a value fromvalues
, returns a stream of search texts associated with the value- Returns:
- a searcher that searches from
values
- Mappings:
Namespace Name Mixin selector official a
Lfne;a(Ljava/util/List;Ljava/util/function/Function;)Lfne;
intermediary method_43796
Lnet/minecraft/class_7454;method_43796(Ljava/util/List;Ljava/util/function/Function;)Lnet/minecraft/class_7454;
named of
Lnet/minecraft/client/search/TextSearcher;of(Ljava/util/List;Ljava/util/function/Function;)Lnet/minecraft/client/search/TextSearcher;
-
search
Returns the results of searching with the providedtext
.- Returns:
- the results of searching with the provided
text
- Mappings:
Namespace Name Mixin selector official search
Lfne;search(Ljava/lang/String;)Ljava/util/List;
intermediary search
Lnet/minecraft/class_7454;search(Ljava/lang/String;)Ljava/util/List;
named search
Lnet/minecraft/client/search/TextSearcher;search(Ljava/lang/String;)Ljava/util/List;
-