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

com.alipay.rdf.file.protocol.RowDefinition Maven / Gradle / Ivy

There is a newer version: 2.2.11
Show newest version
package com.alipay.rdf.file.protocol;

import com.alipay.rdf.file.meta.FileColumnMeta;
import com.alipay.rdf.file.spi.RdfFileFunctionSpi;

/**
 * Copyright (C) 2013-2018 Ant Financial Services Group
 * 
 * @author hongwei.quhw
 * @version $Id: RowDefinition.java, v 0.1 2017年4月1日 上午10:51:36 hongwei.quhw Exp $
 */
public class RowDefinition {
    private boolean          columnloop;
    private String           defaultValue;
    private ColumnLayoutEnum columnLayout;
    private String           columnSplit;
    private RdfFileFunctionSpi   output;
    private FileColumnMeta   columnMeta;

    /**
     * Getter method for property columnloop.
     * 
     * @return property value of columnloop
     */
    public boolean isColumnloop() {
        return columnloop;
    }

    /**
     * Setter method for property columnloop.
     * 
     * @param columnloop value to be assigned to property columnloop
     */
    public void setColumnloop(boolean columnloop) {
        this.columnloop = columnloop;
    }

    /**
     * Getter method for property defaultValue.
     * 
     * @return property value of defaultValue
     */
    public String getDefaultValue() {
        return defaultValue;
    }

    /**
     * Setter method for property defaultValue.
     * 
     * @param defaultValue value to be assigned to property defaultValue
     */
    public void setDefaultValue(String defaultValue) {
        this.defaultValue = defaultValue;
    }

    /**
     * Getter method for property columnLayout.
     * 
     * @return property value of columnLayout
     */
    public ColumnLayoutEnum getColumnLayout() {
        return columnLayout;
    }

    /**
     * Setter method for property columnLayout.
     * 
     * @param columnLayout value to be assigned to property columnLayout
     */
    public void setColumnLayout(ColumnLayoutEnum columnLayout) {
        this.columnLayout = columnLayout;
    }

    /**
     * Getter method for property columnSplit.
     * 
     * @return property value of columnSplit
     */
    public String getColumnSplit() {
        return columnSplit;
    }

    /**
     * Setter method for property columnSplit.
     * 
     * @param columnSplit value to be assigned to property columnSplit
     */
    public void setColumnSplit(String columnSplit) {
        this.columnSplit = columnSplit;
    }

    /**
     * Getter method for property output.
     * 
     * @return property value of output
     */
    public RdfFileFunctionSpi getOutput() {
        return output;
    }

    /**
     * Setter method for property output.
     * 
     * @param output value to be assigned to property output
     */
    public void setOutput(RdfFileFunctionSpi output) {
        this.output = output;
    }

    public FileColumnMeta getColumnMeta() {
        return columnMeta;
    }

    public void setColumnMeta(FileColumnMeta columnMeta) {
        this.columnMeta = columnMeta;
    }

    @Override
    public String toString() {
        StringBuffer sb = new StringBuffer("RowDefinition[");
        sb.append("columnloop=" + columnloop);
        sb.append(",defaultValue=" + defaultValue);
        sb.append(",columnLayout=" + columnLayout.name());
        sb.append(",columnSplit=" + columnSplit);
        sb.append(",output=" + RdfFileFunctionSpi.class.getSimpleName());
        sb.append(",columnMeta=" + columnMeta);
        sb.append("]");
        return super.toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy