it.kamaladafrica.codicefiscale.Person Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codice-fiscale Show documentation
Show all versions of codice-fiscale Show documentation
Yet another "Codice Fiscale" (italian tax code) calculator.
The newest version!
package it.kamaladafrica.codicefiscale;
import java.time.LocalDate;
import lombok.Builder;
import lombok.NonNull;
import lombok.Value;
@Value
@Builder
public class Person {
@NonNull
String firstname;
@NonNull
String lastname;
@NonNull
LocalDate birthDate;
@NonNull
City city;
boolean isFemale;
}