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

io.castled.schema.models.StringSchema Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package io.castled.schema.models;

import com.google.common.collect.Lists;
import lombok.Builder;
import lombok.Getter;

public class StringSchema extends Schema {

    @Getter
    private final int maxLength;

    @Builder
    public StringSchema(boolean optional, int maxLength) {
        super(SchemaType.STRING, Lists.newArrayList(String.class), optional);
        this.maxLength = maxLength;

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy