Skip to content
This repository was archived by the owner on Dec 25, 2024. It is now read-only.

Latest commit

 

History

History
61 lines (48 loc) · 2.66 KB

File metadata and controls

61 lines (48 loc) · 2.66 KB

ParentPet

org.openapijsonschematools.client.components.schemas.ParentPet.java public class ParentPet

A class that contains necessary nested

  • schema classes (which validate payloads), extends JsonSchema
  • sealed interfaces which store validated payloads, java version of a sum type
  • boxed classes which store validated payloads, sealed permits class implementations

Nested Class Summary

Modifier and Type Class and Description
sealed interface ParentPet.ParentPet1Boxed
sealed interface for validated payloads
record ParentPet.ParentPet1BoxedMap
boxed class to store validated Map payloads
static class ParentPet.ParentPet1
schema class

ParentPet1Boxed

public sealed interface ParentPet1Boxed
permits
ParentPet1BoxedMap

sealed interface that stores validated payloads using boxed classes

ParentPet1BoxedMap

public record ParentPet1BoxedMap
implements ParentPet1Boxed

record that stores validated Map payloads, sealed permits implementation

Constructor Summary

Constructor and Description
ParentPet1BoxedMap(FrozenMap<@Nullable Object> data)
Creates an instance, private visibility

Method Summary

Modifier and Type Method and Description
FrozenMap<@Nullable Object> data()
validated payload
@Nullable Object getData()
validated payload

ParentPet1

public static class ParentPet1
extends JsonSchema

A schema class that validates payloads

Field Summary

Modifier and Type Field and Description
Set<Class<?>> type = Set.of(Map.class)
List<Class<? extends JsonSchema>> allOf = List.of(
    GrandparentAnimal.GrandparentAnimal1.class
;)

Method Summary

Modifier and Type Method and Description
FrozenMap<String, @Nullable Object> validate(Map<?, ?> arg, SchemaConfiguration configuration)
ParentPet1BoxedMap validateAndBox(Map<?, ?> arg, SchemaConfiguration configuration)
ParentPet1Boxed validateAndBox(@Nullable Object arg, SchemaConfiguration configuration)
@Nullable Object validate(@Nullable Object arg, SchemaConfiguration configuration)

[Back to top] [Back to Component Schemas] [Back to README]