<div dir="auto"><div>You'll need to write the annotation processor yourself I'm afraid, this is a design outline.</div><div dir="auto">Stephen<br><br><div class="gmail_quote gmail_quote_container" dir="auto"><div dir="ltr" class="gmail_attr">On Sun, 30 Nov 2025, 21:19 David Alayachew, <<a href="mailto:davidalayachew@gmail.com">davidalayachew@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div class="gmail_default" style="font-family:monospace">Thanks Stephen.</div><div><br></div><div><div style="font-family:monospace" class="gmail_default">Hmmmmm, so this is definitely the best solution I have seen thus far. The only real downside is that the static final field has a different name than the actual record component. But I can probably fix that by making it an inner class or something, as opposed to sharing the same namespace as the record itself.</div><div style="font-family:monospace" class="gmail_default"><br></div><div style="font-family:monospace" class="gmail_default">Can you link me to the annotation code?</div></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Sun, Nov 30, 2025 at 4:05 PM Stephen Colebourne <<a href="mailto:scolebourne@joda.org" target="_blank" rel="noreferrer">scolebourne@joda.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">There is a way to do this, but it isn't pretty. Use annotation processing.<br>
<br>
@GeneratedRecordComponentInterface<br>
record User(String firstName, String lastName, ComplexObject<br>
complexColumn) implements UserColumns {}<br>
<br>
// annotation processor generates:<br>
public interface UserColumns {<br>
public static final RecordComponentWrapper<String><br>
FIRST_NAME_COMPONENT = new RecordComponentWrapper(User.class,<br>
"firstName");<br>
public static final RecordComponentWrapper<String><br>
LAST_NAME_COMPONENT = new RecordComponentWrapper(User.class,<br>
"lastName");<br>
public static final RecordComponentWrapper<ComplexObject><br>
COMPLEX_COLUMN_COMPONENT = new RecordComponentWrapper(User.class,<br>
"complexColumn");<br>
}<br>
<br>
where `RecordComponentWrapper` is some suitable type-safe wrapper for<br>
record components.<br>
<br>
Although there is a string for each record component, it is in<br>
generated code, thus won't get out of sync.<br>
<br>
(This is the annotation processing equivalent to how Joda-Beans<br>
meta-properties have worked for many years)<br>
Stephen<br>
<br>
On Sun, 30 Nov 2025 at 20:39, David Alayachew <<a href="mailto:davidalayachew@gmail.com" target="_blank" rel="noreferrer">davidalayachew@gmail.com</a>> wrote:<br>
><br>
> Thanks everyone for the context. The answers I am getting are very helpful. I do see a comment about XY problem, so here is the full context of my problem.<br>
><br>
> Unlike normal classes, record are transparent data carriers. Which make them useful for simple DTO's and serialization. Specifically, I wanted to create a De/serialization format for a CSV file.<br>
><br>
> Let's say I have record User(String firstName, String lastName, ComplexObject complexColumn) {}, and each RecordComponent corrsponds to a column of my CSV, while each instance of User corresponds to a single row. Let's also assume that firstName and lastName are computationally cheap to deserialize, but complexColumn is expensive (complex but necessary regex).<br>
><br>
> Well, I want to create a CSV De/Serialization tool that allows me to not only deserialize the object in full, but also deserialize only the specific component I want. In this case, if all I care about is firstName and lastName, then why should I pay the price of also deserializing complexColumn, which I won't use at all?<br>
><br>
> Hence why I requested these various things in the thread -- such as the ability to reference RecordComponents, or why I wanted to use a method reference to a records accessors. I wanted some way to get compile time type safety about the column I am requesting. If I change my User data type such that firstName now says first instead, I want all callers of my tool to get compile time errors. But I don't see how to do it.<br>
><br>
> I really do think that, if records claim to be transparent carriers of data, then being able to isolate and point to a single RecordComponent in a type safe way that will fail at compile time if I am out of sorts sounds like a reasonable thing to want from a record.<br>
><br>
><br>
> On Sun, Nov 30, 2025 at 3:04 PM Kirill Semyonkin <<a href="mailto:burnytc@gmail.com" target="_blank" rel="noreferrer">burnytc@gmail.com</a>> wrote:<br>
>><br>
>> Hello David,<br>
>><br>
>> I've seen some people (ab)use Serializable and SerializedLambda to get names of the class and the method, with numerous examples like <a href="https://stackoverflow.com/a/53397378/16208077" rel="noreferrer noreferrer" target="_blank">https://stackoverflow.com/a/53397378/16208077</a>. From there you can traverse usual reflection with those strings to get the exact RecordComponent or some other reflection object. But those strings come from users doing method references, so you will get the behavior that you wanted, at least to some extent. Although it slightly feels like an XY problem.<br>
>><br>
>> - Kirill Semyonkin<br>
>><br>
>> вс, 30 нояб. 2025 г. в 22:57, Attila Kelemen <<a href="mailto:attila.kelemen85@gmail.com" target="_blank" rel="noreferrer">attila.kelemen85@gmail.com</a>>:<br>
>>><br>
>>> I guess, if your record type is fixed, then you can have a dummy instance of that record with all fields being different (hopefully, no 3 boolean components :)), and then you can do the same hack as with the interface + proxy combo.<br>
>>><br>
>>> Attila Kelemen <<a href="mailto:attila.kelemen85@gmail.com" target="_blank" rel="noreferrer">attila.kelemen85@gmail.com</a>> ezt írta (időpont: 2025. nov. 30., V, 20:51):<br>
>>>><br>
>>>> I think that is impossible. What I did when I needed something similar is that I used an interface instead of a record and built utilities around it, because in that case you can imitate what you want.<br>
>>>><br>
>>>> That is, consider that you have `interface User { String firstName(); String lastName() }`. In this case, you could have methods taking a `Function<User, T>` and then you can create an instance of `User` via `Proxy.newProxyInstance` in which you record which method was called, and pass the proxy instance to the `Function`. Assuming that someone passed `User::firstName` for the `Function`, you can detect which method was passed. The drawbacks are obvious, but it is better than passing strings in my opinion.<br>
>>>><br>
>>>> David Alayachew <<a href="mailto:davidalayachew@gmail.com" target="_blank" rel="noreferrer">davidalayachew@gmail.com</a>> ezt írta (időpont: 2025. nov. 30., V, 20:41):<br>
>>>>><br>
>>>>> Thanks for the response Attila.<br>
>>>>><br>
>>>>> Let me try and loosen the constraints then -- is there any way for me to get a RecordComponent corresponding to firstName without needing to do String comparison?<br>
>>>>><br>
>>>>> At the end of the day, that's all that I really need.<br>
>>>>><br>
>>>>> As is now, the only way I can see to get a RecordComponent is to drill down from j.l.Class --> j.l.r.RecordComponent, then do String comparison against a provided String to get the record component that I want. That is unsafe and stringly typed, so, very much undesirable. After all, if I change my record to say first instead of firstName, I want a compiler error. But doing it that way, I won't -- I'll get a runtime error.<br>
>>>>><br>
>>>>> So that's what I really want -- a type-safe way to isolate a record component from a record, without forcing my users to have to provide a String corresponding to the record component name.<br>
>>>>><br>
>>>>> On Sun, Nov 30, 2025 at 2:16 PM Attila Kelemen <<a href="mailto:attila.kelemen85@gmail.com" target="_blank" rel="noreferrer">attila.kelemen85@gmail.com</a>> wrote:<br>
>>>>>><br>
>>>>>> I'm pretty sure there is no such thing, because that essentially implies the existence of some kind of method literal (well, it would not be strictly necessary, but the JLS would feel strange without it), and there is no such thing (though it would be awesome, if there was).<br>
>>>>>><br>
>>>>>> Also, note that if this was a thing, then your case is just a very special case, and you would want more (I would for sure). That is, in that case, I would also want type safety. So, something like MethodReference<(MyRecord) -> String> (which of course would require function types in Java).<br>
>>>>>><br>
>>>>>> When I needed this, luckily I could restrain my need to interface methods (as opposed to your record getters) where I could create a `Proxy` and see which method gets called (nasty hack, has its downsides, but felt like the safest to me).<br>
>>>>>><br>
>>>>>> Attila<br>
>>>>>><br>
>>>>>> David Alayachew <<a href="mailto:davidalayachew@gmail.com" target="_blank" rel="noreferrer">davidalayachew@gmail.com</a>> ezt írta (időpont: 2025. nov. 29., Szo, 20:50):<br>
>>>>>>><br>
>>>>>>> And by all means, add more parameters to foo if you want. For example, if a User.class helps, please do so!<br>
>>>>>>><br>
>>>>>>> I just don't want to do anything like this.<br>
>>>>>>><br>
>>>>>>> foo("firstName");<br>
>>>>>>><br>
>>>>>>> That's stringly typed, and undesirable for my use case.<br>
</blockquote></div>
</blockquote></div></div></div>