[
https://issues.apache.org/jira/browse/MINDEXER-122?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17965360#comment-17965360
]
Olivier Lamy commented on MINDEXER-122:
---------------------------------------
This project has moved from Jira to GitHub Issues. This issue was migrated to
[apache/maven-indexer#525|https://github.com/apache/maven-indexer/issues/525].
> Add getName() to Record.EntryKey
> --------------------------------
>
> Key: MINDEXER-122
> URL: https://issues.apache.org/jira/browse/MINDEXER-122
> Project: Maven Indexer (Moved to GitHub Issues)
> Issue Type: Improvement
> Reporter: Stephen Buergler
> Assignee: Sylwester Lachiewicz
> Priority: Trivial
> Fix For: 6.1.0, 6.1.1
>
>
> Currently I'm doing this to pull the name field out of EntryKey
> {code:java}
> @SneakyThrows
> private static MethodHandle entryKeyNameField() {
> return MethodHandles.privateLookupIn(EntryKey.class,
> MethodHandles.lookup())
> .findGetter(EntryKey.class, "name", String.class);
> }
> private static final MethodHandle entryKeyNameField = entryKeyNameField();
> @SneakyThrows
> static String getName(EntryKey entryKey) {
> return (String) entryKeyNameField.invokeExact(entryKey);
> }
> {code}
> It would be nice if getName() was a method on EntryKey itself.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)