org.openapijsonschematools.client.components.schemas.ComplexQuadrilateral.java public class ComplexQuadrilateral
A class that contains necessary nested
- schema classes (which validate payloads), extends JsonSchema
- classes to store validated map payloads, extends FrozenMap
- classes to build inputs for map payloads
- enum classes
Modifier and Type | Class and Description |
---|---|
static class | ComplexQuadrilateral.ComplexQuadrilateral1 schema class |
static class | ComplexQuadrilateral.Schema1 schema class |
static class | ComplexQuadrilateral.Schema1MapBuilder builder for Map payloads |
static class | ComplexQuadrilateral.Schema1Map output class for Map payloads |
static class | ComplexQuadrilateral.QuadrilateralType schema class |
enum | ComplexQuadrilateral.StringQuadrilateralTypeEnums String enum |
public static class ComplexQuadrilateral1
extends JsonSchema
A schema class that validates payloads
Modifier and Type | Field and Description |
---|---|
List<Class<? extends JsonSchema>> | allOf = List.of( QuadrilateralInterface.QuadrilateralInterface1.class, Schema1.class ;) |
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) |
boolean | validate(boolean arg, SchemaConfiguration configuration) |
FrozenMap<String, @Nullable Object> | validate(Map<?, ?> arg, SchemaConfiguration configuration) |
FrozenList<@Nullable Object> | validate(List<?> arg, SchemaConfiguration configuration) |
@Nullable Object | validate(@Nullable Object arg, SchemaConfiguration configuration) |
public static class Schema1
extends JsonSchema
A schema class that validates payloads
import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags;
import org.openapijsonschematools.client.configurations.SchemaConfiguration;
import org.openapijsonschematools.client.exceptions.ValidationException;
import org.openapijsonschematools.client.schemas.validation.MapUtils;
import org.openapijsonschematools.client.schemas.validation.FrozenList;
import org.openapijsonschematools.client.schemas.validation.FrozenMap;
import java.util.Arrays;
import java.util.List;
import java.util.AbstractMap;
static final SchemaConfiguration configuration = new SchemaConfiguration(JsonSchemaKeywordFlags.ofNone());
// Map validation
ComplexQuadrilateral.Schema1Map validatedPayload =
ComplexQuadrilateral.Schema1.validate(
new ComplexQuadrilateral.Schema1MapBuilder()
.quadrilateralType("ComplexQuadrilateral")
.build(),
configuration
);
Modifier and Type | Field and Description |
---|---|
Set<Class<?>> | type = Set.of(Map.class) |
Map<String, Class<? extends JsonSchema>> | properties = Map.ofEntries( new PropertyEntry("quadrilateralType", QuadrilateralType.class)) ) |
Modifier and Type | Method and Description |
---|---|
Schema1Map | validate(Map<?, ?> arg, SchemaConfiguration configuration) |
@Nullable Object | validate(@Nullable Object arg, SchemaConfiguration configuration) |
public class Schema1MapBuilder
builder for Map<String, @Nullable Object>
A class that builds the Map input type
Constructor and Description |
---|
Schema1MapBuilder() Creates a builder that contains an empty map |
Modifier and Type | Method and Description |
---|---|
Map<String, @Nullable Object> | build() Returns map input that should be used with Schema.validate |
Schema1MapBuilder | quadrilateralType(String value) |
Schema1MapBuilder | quadrilateralType(StringQuadrilateralTypeEnums value) |
Schema1MapBuilder | additionalProperty(String key, Void value) |
Schema1MapBuilder | additionalProperty(String key, boolean value) |
Schema1MapBuilder | additionalProperty(String key, String value) |
Schema1MapBuilder | additionalProperty(String key, int value) |
Schema1MapBuilder | additionalProperty(String key, float value) |
Schema1MapBuilder | additionalProperty(String key, long value) |
Schema1MapBuilder | additionalProperty(String key, double value) |
Schema1MapBuilder | additionalProperty(String key, List<?> value) |
Schema1MapBuilder | additionalProperty(String key, Map<String, ?> value) |
public static class Schema1Map
extends FrozenMap<String, @Nullable Object>
A class to store validated Map payloads
Modifier and Type | Method and Description |
---|---|
static Schema1Map | of(Map<String, ? extends @Nullable Object> arg, SchemaConfiguration configuration) |
String | quadrilateralType() [optional] must be one of ["ComplexQuadrilateral"] |
@Nullable Object | getAdditionalProperty(String name) provides type safety for additional properties |
public static class QuadrilateralType
extends JsonSchema
A schema class that validates payloads
import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags;
import org.openapijsonschematools.client.configurations.SchemaConfiguration;
import org.openapijsonschematools.client.exceptions.ValidationException;
import org.openapijsonschematools.client.schemas.validation.MapUtils;
import org.openapijsonschematools.client.schemas.validation.FrozenList;
import org.openapijsonschematools.client.schemas.validation.FrozenMap;
import java.util.Arrays;
import java.util.List;
import java.util.AbstractMap;
static final SchemaConfiguration configuration = new SchemaConfiguration(JsonSchemaKeywordFlags.ofNone());
// String validation
String validatedPayload = ComplexQuadrilateral.QuadrilateralType.validate(
"ComplexQuadrilateral",
configuration
);
Modifier and Type | Field and Description |
---|---|
Set<Class<?>> | type = Set.of( String.class ) |
Set | enumValues = SetMaker.makeSet( "ComplexQuadrilateral" ) |
Modifier and Type | Method and Description |
---|---|
String | validate(String arg, SchemaConfiguration configuration) |
String | validate(StringQuadrilateralTypeEnums arg, SchemaConfiguration configuration) |
@Nullable Object | validate(@Nullable Object arg, SchemaConfiguration configuration) |
public enum StringQuadrilateralTypeEnums
extends Enum<StringQuadrilateralTypeEnums>
A class that stores String enum values
Enum Constant | Description |
---|---|
COMPLEX_QUADRILATERAL | value = "ComplexQuadrilateral" |