Skip to content

Instantly share code, notes, and snippets.

View khmarbaise's full-sized avatar

Karl Heinz Marbaise khmarbaise

View GitHub Profile

Keybase proof

I hereby claim:

  • I am khmarbaise on github.
  • I am khmarbaise (https://keybase.io/khmarbaise) on keybase.
  • I have a public key ASD25_TPJyZuXSxgnPANGE9b2FWNG-7ROWmiTwwL0bv8bQo

To claim this, I am signing this object:

@khmarbaise
khmarbaise / Author.java
Created November 2, 2024 13:19
Book Example / Record usage
package com.soebes.code.example.book;
public record Author(String name){
public Author {
name = NonBlankString.of(name, "author").value();
}
}