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

io.castled.schema.models.IntegerSchema 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;

public class IntegerSchema extends Schema {

    @Builder
    public IntegerSchema(boolean optional) {
        super(SchemaType.INT, Lists.newArrayList(Integer.class), optional);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy