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

com.qcloud.cos.model.ciModel.job.v2.FillConcat Maven / Gradle / Ivy

There is a newer version: 5.6.238.2
Show newest version
package com.qcloud.cos.model.ciModel.job.v2;

import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamImplicit;

import java.util.ArrayList;
import java.util.List;

public class FillConcat {
    @XStreamImplicit(itemFieldName = "FillInput")
    private List fillInput;

    @XStreamAlias("Format")
    private String format;

    @XStreamAlias("RefMode")
    private String refMode;

    @XStreamAlias("Reflndex")
    private String reflndex;

    public String getRefMode() {
        return refMode;
    }

    public void setRefMode(String refMode) {
        this.refMode = refMode;
    }

    public String getReflndex() {
        return reflndex;
    }

    public void setReflndex(String reflndex) {
        this.reflndex = reflndex;
    }

    public void setFillInput(List fillInput) {
        this.fillInput = fillInput;
    }

    public String getFormat() {
        return format;
    }

    public void setFormat(String format) {
        this.format = format;
    }

    public List getFillInput() {
        if (fillInput == null) {
            fillInput = new ArrayList<>();
        }
        return fillInput;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy