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

io.castled.schema.models.DoubleSchema 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 DoubleSchema extends Schema {

    @Builder
    public DoubleSchema(boolean optional) {
        super(SchemaType.DOUBLE, Lists.newArrayList(Double.class), optional);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy