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

io.castled.schema.models.BytesSchema 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 java.nio.ByteBuffer;
import java.util.Map;

public class BytesSchema extends Schema {

    @Builder
    public BytesSchema(boolean optional) {
        super(SchemaType.BYTES, Lists.newArrayList(byte[].class, ByteBuffer.class), optional);

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy