forked from fanruan/easyexcel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.5 KiB
66 lines
1.5 KiB
package com.alibaba.excel.metadata.property; |
|
|
|
import java.lang.reflect.Field; |
|
|
|
import com.alibaba.excel.converters.Converter; |
|
import com.alibaba.excel.metadata.Head; |
|
|
|
/** |
|
* @author jipengfei |
|
*/ |
|
public class ExcelContentProperty { |
|
/** |
|
* Java filed |
|
*/ |
|
private Field field; |
|
/** |
|
* Excel head |
|
*/ |
|
private Head head; |
|
/** |
|
* Custom defined converters |
|
*/ |
|
private Converter converter; |
|
private DateTimeFormatProperty dateTimeFormatProperty; |
|
private NumberFormatProperty numberFormatProperty; |
|
|
|
public Field getField() { |
|
return field; |
|
} |
|
|
|
public void setField(Field field) { |
|
this.field = field; |
|
} |
|
|
|
public Head getHead() { |
|
return head; |
|
} |
|
|
|
public void setHead(Head head) { |
|
this.head = head; |
|
} |
|
|
|
public DateTimeFormatProperty getDateTimeFormatProperty() { |
|
return dateTimeFormatProperty; |
|
} |
|
|
|
public void setDateTimeFormatProperty(DateTimeFormatProperty dateTimeFormatProperty) { |
|
this.dateTimeFormatProperty = dateTimeFormatProperty; |
|
} |
|
|
|
public NumberFormatProperty getNumberFormatProperty() { |
|
return numberFormatProperty; |
|
} |
|
|
|
public void setNumberFormatProperty(NumberFormatProperty numberFormatProperty) { |
|
this.numberFormatProperty = numberFormatProperty; |
|
} |
|
|
|
public Converter getConverter() { |
|
return converter; |
|
} |
|
|
|
public void setConverter(Converter converter) { |
|
this.converter = converter; |
|
} |
|
}
|
|
|