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

com.aliyun.datahub.client.model.Field Maven / Gradle / Ivy

There is a newer version: 2.25.6
Show newest version
package com.aliyun.datahub.client.model;

public class Field {
    private String name;
    private FieldType type;
    private boolean allowNull = true;

    public Field(String name, FieldType type) {
        this.name = name;
        this.type = type;
    }

    public Field(String name, FieldType type, boolean allowNull) {
        this.name = name;
        this.type = type;
        this.allowNull = allowNull;
    }

    public String getName() {
        return name;
    }

    public FieldType getType() {
        return type;
    }

    public boolean isAllowNull() {
        return allowNull;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy