Skip to content

Latest commit

 

History

History
169 lines (136 loc) · 8.43 KB

File metadata and controls

169 lines (136 loc) · 8.43 KB

MaxpropertiesValidation

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

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 MaxpropertiesValidation.MaxpropertiesValidation1Boxed
sealed interface for validated payloads
record MaxpropertiesValidation.MaxpropertiesValidation1BoxedVoid
boxed class to store validated null payloads
record MaxpropertiesValidation.MaxpropertiesValidation1BoxedBoolean
boxed class to store validated boolean payloads
record MaxpropertiesValidation.MaxpropertiesValidation1BoxedNumber
boxed class to store validated Number payloads
record MaxpropertiesValidation.MaxpropertiesValidation1BoxedString
boxed class to store validated String payloads
record MaxpropertiesValidation.MaxpropertiesValidation1BoxedList
boxed class to store validated List payloads
record MaxpropertiesValidation.MaxpropertiesValidation1BoxedMap
boxed class to store validated Map payloads
static class MaxpropertiesValidation.MaxpropertiesValidation1
schema class

MaxpropertiesValidation1Boxed

public sealed interface MaxpropertiesValidation1Boxed
permits
MaxpropertiesValidation1BoxedVoid, MaxpropertiesValidation1BoxedBoolean, MaxpropertiesValidation1BoxedNumber, MaxpropertiesValidation1BoxedString, MaxpropertiesValidation1BoxedList, MaxpropertiesValidation1BoxedMap

sealed interface that stores validated payloads using boxed classes

MaxpropertiesValidation1BoxedVoid

public record MaxpropertiesValidation1BoxedVoid
implements MaxpropertiesValidation1Boxed

record that stores validated null payloads, sealed permits implementation

Constructor Summary

Constructor and Description
MaxpropertiesValidation1BoxedVoid(Void data)
Creates an instance, private visibility

Method Summary

Modifier and Type Method and Description
Void data()
validated payload
@Nullable Object getData()
validated payload

MaxpropertiesValidation1BoxedBoolean

public record MaxpropertiesValidation1BoxedBoolean
implements MaxpropertiesValidation1Boxed

record that stores validated boolean payloads, sealed permits implementation

Constructor Summary

Constructor and Description
MaxpropertiesValidation1BoxedBoolean(boolean data)
Creates an instance, private visibility

Method Summary

Modifier and Type Method and Description
boolean data()
validated payload
@Nullable Object getData()
validated payload

MaxpropertiesValidation1BoxedNumber

public record MaxpropertiesValidation1BoxedNumber
implements MaxpropertiesValidation1Boxed

record that stores validated Number payloads, sealed permits implementation

Constructor Summary

Constructor and Description
MaxpropertiesValidation1BoxedNumber(Number data)
Creates an instance, private visibility

Method Summary

Modifier and Type Method and Description
Number data()
validated payload
@Nullable Object getData()
validated payload

MaxpropertiesValidation1BoxedString

public record MaxpropertiesValidation1BoxedString
implements MaxpropertiesValidation1Boxed

record that stores validated String payloads, sealed permits implementation

Constructor Summary

Constructor and Description
MaxpropertiesValidation1BoxedString(String data)
Creates an instance, private visibility

Method Summary

Modifier and Type Method and Description
String data()
validated payload
@Nullable Object getData()
validated payload

MaxpropertiesValidation1BoxedList

public record MaxpropertiesValidation1BoxedList
implements MaxpropertiesValidation1Boxed

record that stores validated List payloads, sealed permits implementation

Constructor Summary

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

Method Summary

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

MaxpropertiesValidation1BoxedMap

public record MaxpropertiesValidation1BoxedMap
implements MaxpropertiesValidation1Boxed

record that stores validated Map payloads, sealed permits implementation

Constructor Summary

Constructor and Description
MaxpropertiesValidation1BoxedMap(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

MaxpropertiesValidation1

public static class MaxpropertiesValidation1
extends JsonSchema

A schema class that validates payloads

Field Summary

Modifier and Type Field and Description
Integer maxProperties = 2

Method Summary

Modifier and Type Method and Description
String validate(String arg, SchemaConfiguration configuration)
Void validate(Void arg, SchemaConfiguration configuration)
int validate(int arg, SchemaConfiguration configuration)
long validate(long arg, SchemaConfiguration configuration)
float validate(float arg, SchemaConfiguration configuration)
double validate(double arg, SchemaConfiguration configuration)
Number validate(Number arg, SchemaConfiguration configuration)
boolean validate(boolean arg, SchemaConfiguration configuration)
FrozenMap<@Nullable Object> validate(Map<?, ?> arg, SchemaConfiguration configuration)
FrozenList<@Nullable Object> validate(List<?> arg, SchemaConfiguration configuration)
MaxpropertiesValidation1BoxedString validateAndBox(String arg, SchemaConfiguration configuration)
MaxpropertiesValidation1BoxedVoid validateAndBox(Void arg, SchemaConfiguration configuration)
MaxpropertiesValidation1BoxedNumber validateAndBox(Number arg, SchemaConfiguration configuration)
MaxpropertiesValidation1BoxedBoolean validateAndBox(boolean arg, SchemaConfiguration configuration)
MaxpropertiesValidation1BoxedMap validateAndBox(Map<?, ?> arg, SchemaConfiguration configuration)
MaxpropertiesValidation1BoxedList validateAndBox(List<?> arg, SchemaConfiguration configuration)
MaxpropertiesValidation1Boxed validateAndBox(@Nullable Object arg, SchemaConfiguration configuration)
@Nullable Object validate(@Nullable Object arg, SchemaConfiguration configuration)

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