
com.groupdocs.sdk.model.DocumentCell Maven / Gradle / Ivy
Show all versions of groupdocs-java-client Show documentation
/**
* Copyright 2012 GroupDocs.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.groupdocs.sdk.model;
/**
*
*
* NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
*
*/
public class DocumentCell {
private String name = null;
private String value = null;
private Integer sheetNumber = null;
private Integer column = null;
private Integer row = null;
private Double width = null;
private Double height = null;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public Integer getSheetNumber() {
return sheetNumber;
}
public void setSheetNumber(Integer sheetNumber) {
this.sheetNumber = sheetNumber;
}
public Integer getColumn() {
return column;
}
public void setColumn(Integer column) {
this.column = column;
}
public Integer getRow() {
return row;
}
public void setRow(Integer row) {
this.row = row;
}
public Double getWidth() {
return width;
}
public void setWidth(Double width) {
this.width = width;
}
public Double getHeight() {
return height;
}
public void setHeight(Double height) {
this.height = height;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DocumentCell {\n");
sb.append(" name: ").append(name).append("\n");
sb.append(" value: ").append(value).append("\n");
sb.append(" sheetNumber: ").append(sheetNumber).append("\n");
sb.append(" column: ").append(column).append("\n");
sb.append(" row: ").append(row).append("\n");
sb.append(" width: ").append(width).append("\n");
sb.append(" height: ").append(height).append("\n");
sb.append("}\n");
return sb.toString();
}
}