All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.mrtimeey.herodomainmodel.model.SuperHero Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package io.github.mrtimeey.herodomainmodel.model;

import com.fasterxml.jackson.databind.annotation.JsonSerialize;

@JsonSerialize
public record SuperHero(String name, String currentAlias, Gender gender, Appearance appearance, PersonalInformation personalInformation) {
   public static SuperHero of(String name, String currentAlias, Gender gender, Appearance appearance, PersonalInformation personalInformation) {
      return new SuperHero(name, currentAlias, gender, appearance, personalInformation);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy