Skip to content

Latest commit

 

History

History
169 lines (136 loc) · 7.98 KB

File metadata and controls

169 lines (136 loc) · 7.98 KB

PatternValidation

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

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 PatternValidation.PatternValidation1Boxed
sealed interface for validated payloads
record PatternValidation.PatternValidation1BoxedVoid
boxed class to store validated null payloads
record PatternValidation.PatternValidation1BoxedBoolean
boxed class to store validated boolean payloads
record PatternValidation.PatternValidation1BoxedNumber
boxed class to store validated Number payloads
record PatternValidation.PatternValidation1BoxedString
boxed class to store validated String payloads
record PatternValidation.PatternValidation1BoxedList
boxed class to store validated List payloads
record PatternValidation.PatternValidation1BoxedMap
boxed class to store validated Map payloads
static class PatternValidation.PatternValidation1
schema class

PatternValidation1Boxed

public sealed interface PatternValidation1Boxed
permits
PatternValidation1BoxedVoid, PatternValidation1BoxedBoolean, PatternValidation1BoxedNumber, PatternValidation1BoxedString, PatternValidation1BoxedList, PatternValidation1BoxedMap

sealed interface that stores validated payloads using boxed classes

PatternValidation1BoxedVoid

public record PatternValidation1BoxedVoid
implements PatternValidation1Boxed

record that stores validated null payloads, sealed permits implementation

Constructor Summary

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

Method Summary

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

PatternValidation1BoxedBoolean

public record PatternValidation1BoxedBoolean
implements PatternValidation1Boxed

record that stores validated boolean payloads, sealed permits implementation

Constructor Summary

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

Method Summary

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

PatternValidation1BoxedNumber

public record PatternValidation1BoxedNumber
implements PatternValidation1Boxed

record that stores validated Number payloads, sealed permits implementation

Constructor Summary

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

Method Summary

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

PatternValidation1BoxedString

public record PatternValidation1BoxedString
implements PatternValidation1Boxed

record that stores validated String payloads, sealed permits implementation

Constructor Summary

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

Method Summary

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

PatternValidation1BoxedList

public record PatternValidation1BoxedList
implements PatternValidation1Boxed

record that stores validated List payloads, sealed permits implementation

Constructor Summary

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

PatternValidation1BoxedMap

public record PatternValidation1BoxedMap
implements PatternValidation1Boxed

record that stores validated Map payloads, sealed permits implementation

Constructor Summary

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

PatternValidation1

public static class PatternValidation1
extends JsonSchema

A schema class that validates payloads

Field Summary

Modifier and Type Field and Description
Pattern pattern = Pattern.compile(
    "^a*$"
)

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)
PatternValidation1BoxedString validateAndBox(String arg, SchemaConfiguration configuration)
PatternValidation1BoxedVoid validateAndBox(Void arg, SchemaConfiguration configuration)
PatternValidation1BoxedNumber validateAndBox(Number arg, SchemaConfiguration configuration)
PatternValidation1BoxedBoolean validateAndBox(boolean arg, SchemaConfiguration configuration)
PatternValidation1BoxedMap validateAndBox(Map<?, ?> arg, SchemaConfiguration configuration)
PatternValidation1BoxedList validateAndBox(List<?> arg, SchemaConfiguration configuration)
PatternValidation1Boxed validateAndBox(@Nullable Object arg, SchemaConfiguration configuration)
@Nullable Object validate(@Nullable Object arg, SchemaConfiguration configuration)

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