<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>records | Down Home Country Coding With Scott Selikoff and Jeanne Boyarsky</title>
	<atom:link href="https://www.selikoff.net/tag/records/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.selikoff.net</link>
	<description>Java/J2EE Software Development and Technology Discussion Blog</description>
	<lastBuildDate>Sun, 28 Jan 2024 02:23:13 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1</generator>
<site xmlns="com-wordpress:feed-additions:1">4595340</site>	<item>
		<title>gson supports records</title>
		<link>https://www.selikoff.net/2024/01/27/gson-supports-records/</link>
					<comments>https://www.selikoff.net/2024/01/27/gson-supports-records/#respond</comments>
		
		<dc:creator><![CDATA[Jeanne Boyarsky]]></dc:creator>
		<pubDate>Sun, 28 Jan 2024 02:23:11 +0000</pubDate>
				<category><![CDATA[Java/Java EE]]></category>
		<category><![CDATA[gson]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[records]]></category>
		<guid isPermaLink="false">https://www.selikoff.net/?p=17067</guid>

					<description><![CDATA[<p>I like using records in Java and getting rid of the boilerplate on my immutable objects. I also like using gson (google&#8217;s serialization/deserialization library) for my lightweight JSON needs. All I need is an annotation to use a different field &#8230; <a href="https://www.selikoff.net/2024/01/27/gson-supports-records/">Continue reading <span class="meta-nav">&#8594;</span></a></p>
The post <a href="https://www.selikoff.net/2024/01/27/gson-supports-records/">gson supports records</a> first appeared on <a href="https://www.selikoff.net">Down Home Country Coding With Scott Selikoff and Jeanne Boyarsky</a>.<hr style="border-top: black solid 1px" /><a href="https://www.selikoff.net/2024/01/27/gson-supports-records/">gson supports records</a> was first posted on January 27, 2024 at 9:23 pm.<br />&copy;2019 &quot;<a href="https://www.selikoff.net">Down Home Country Coding With Scott Selikoff and Jeanne Boyarsky</a>&quot;. Use of this feed is for personal non-commercial use only. If you are not reading this article in your feed reader, then the site is guilty of copyright infringement. Please contact me at <!--email_off-->scott@selikoff.net<!--/email_off--><br />]]></description>
		
					<wfw:commentRss>https://www.selikoff.net/2024/01/27/gson-supports-records/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">17067</post-id>	</item>
		<item>
		<title>sealed classes, records and enums</title>
		<link>https://www.selikoff.net/2022/05/29/sealed-classes-records-and-enums/</link>
					<comments>https://www.selikoff.net/2022/05/29/sealed-classes-records-and-enums/#comments</comments>
		
		<dc:creator><![CDATA[Jeanne Boyarsky]]></dc:creator>
		<pubDate>Sun, 29 May 2022 21:55:47 +0000</pubDate>
				<category><![CDATA[Java Certification]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[records]]></category>
		<category><![CDATA[sealed-classes]]></category>
		<guid isPermaLink="false">https://www.selikoff.net/?p=15878</guid>

					<description><![CDATA[<p>Sometimes we write something for the book, only to realize it shouldn&#8217;t be in the book. This post is an example. Do you think this legal? It is! A sealed interface can be implemented by any Java type. Which means &#8230; <a href="https://www.selikoff.net/2022/05/29/sealed-classes-records-and-enums/">Continue reading <span class="meta-nav">&#8594;</span></a></p>
The post <a href="https://www.selikoff.net/2022/05/29/sealed-classes-records-and-enums/">sealed classes, records and enums</a> first appeared on <a href="https://www.selikoff.net">Down Home Country Coding With Scott Selikoff and Jeanne Boyarsky</a>.<hr style="border-top: black solid 1px" /><a href="https://www.selikoff.net/2022/05/29/sealed-classes-records-and-enums/">sealed classes, records and enums</a> was first posted on May 29, 2022 at 5:55 pm.<br />&copy;2019 &quot;<a href="https://www.selikoff.net">Down Home Country Coding With Scott Selikoff and Jeanne Boyarsky</a>&quot;. Use of this feed is for personal non-commercial use only. If you are not reading this article in your feed reader, then the site is guilty of copyright infringement. Please contact me at <!--email_off-->scott@selikoff.net<!--/email_off--><br />]]></description>
		
					<wfw:commentRss>https://www.selikoff.net/2022/05/29/sealed-classes-records-and-enums/feed/</wfw:commentRss>
			<slash:comments>6</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">15878</post-id>	</item>
		<item>
		<title>Using a Local Record for Readability</title>
		<link>https://www.selikoff.net/2021/12/28/using-a-local-record-for-readability/</link>
					<comments>https://www.selikoff.net/2021/12/28/using-a-local-record-for-readability/#respond</comments>
		
		<dc:creator><![CDATA[Jeanne Boyarsky]]></dc:creator>
		<pubDate>Wed, 29 Dec 2021 02:40:11 +0000</pubDate>
				<category><![CDATA[Java/Java EE]]></category>
		<category><![CDATA[readable-code]]></category>
		<category><![CDATA[records]]></category>
		<category><![CDATA[refactoring]]></category>
		<category><![CDATA[streams]]></category>
		<guid isPermaLink="false">https://www.selikoff.net/?p=15511</guid>

					<description><![CDATA[<p>Sometimes there is something we really want to put in our cert book that doesn&#8217;t fit. You can only have so many case studies/real world scenarios after all. I rescued this from the trash heap and made this blog post./ &#8230; <a href="https://www.selikoff.net/2021/12/28/using-a-local-record-for-readability/">Continue reading <span class="meta-nav">&#8594;</span></a></p>
The post <a href="https://www.selikoff.net/2021/12/28/using-a-local-record-for-readability/">Using a Local Record for Readability</a> first appeared on <a href="https://www.selikoff.net">Down Home Country Coding With Scott Selikoff and Jeanne Boyarsky</a>.<hr style="border-top: black solid 1px" /><a href="https://www.selikoff.net/2021/12/28/using-a-local-record-for-readability/">Using a Local Record for Readability</a> was first posted on December 28, 2021 at 9:40 pm.<br />&copy;2019 &quot;<a href="https://www.selikoff.net">Down Home Country Coding With Scott Selikoff and Jeanne Boyarsky</a>&quot;. Use of this feed is for personal non-commercial use only. If you are not reading this article in your feed reader, then the site is guilty of copyright infringement. Please contact me at <!--email_off-->scott@selikoff.net<!--/email_off--><br />]]></description>
		
					<wfw:commentRss>https://www.selikoff.net/2021/12/28/using-a-local-record-for-readability/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">15511</post-id>	</item>
		<item>
		<title>why java records aren&#8217;t quite immutable</title>
		<link>https://www.selikoff.net/2021/08/01/why-java-records-arent-quite-immutable/</link>
					<comments>https://www.selikoff.net/2021/08/01/why-java-records-arent-quite-immutable/#comments</comments>
		
		<dc:creator><![CDATA[Jeanne Boyarsky]]></dc:creator>
		<pubDate>Sun, 01 Aug 2021 13:38:14 +0000</pubDate>
				<category><![CDATA[Java/Java EE]]></category>
		<category><![CDATA[immutable]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[java16]]></category>
		<category><![CDATA[mutable]]></category>
		<category><![CDATA[records]]></category>
		<category><![CDATA[security]]></category>
		<guid isPermaLink="false">https://www.selikoff.net/?p=15178</guid>

					<description><![CDATA[<p>A new type called a &#8220;record&#8221; was previewed in Java 14 and released in Java 16. One of the benefits is that it creates immutable objects. Kind of. An immutable record This is record is an immutable object. Since it &#8230; <a href="https://www.selikoff.net/2021/08/01/why-java-records-arent-quite-immutable/">Continue reading <span class="meta-nav">&#8594;</span></a></p>
The post <a href="https://www.selikoff.net/2021/08/01/why-java-records-arent-quite-immutable/">why java records aren’t quite immutable</a> first appeared on <a href="https://www.selikoff.net">Down Home Country Coding With Scott Selikoff and Jeanne Boyarsky</a>.<hr style="border-top: black solid 1px" /><a href="https://www.selikoff.net/2021/08/01/why-java-records-arent-quite-immutable/">why java records aren&#8217;t quite immutable</a> was first posted on August 1, 2021 at 9:38 am.<br />&copy;2019 &quot;<a href="https://www.selikoff.net">Down Home Country Coding With Scott Selikoff and Jeanne Boyarsky</a>&quot;. Use of this feed is for personal non-commercial use only. If you are not reading this article in your feed reader, then the site is guilty of copyright infringement. Please contact me at <!--email_off-->scott@selikoff.net<!--/email_off--><br />]]></description>
		
					<wfw:commentRss>https://www.selikoff.net/2021/08/01/why-java-records-arent-quite-immutable/feed/</wfw:commentRss>
			<slash:comments>8</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">15178</post-id>	</item>
	</channel>
</rss>
