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

com.supwisdom.spreadsheet.mapper.model.meta.HeaderMeta Maven / Gradle / Ivy

package com.supwisdom.spreadsheet.mapper.model.meta;

import java.io.Serializable;

/**
 * 表头元信息,包括
 * 
    *
  1. 第几行
  2. *
  3. 内容
  4. *
* Created by hanwen on 2016/12/29. */ public interface HeaderMeta extends Serializable, Comparable { /** * @return 第几行,1-based */ int getRowIndex(); /** * @return 表头内容 */ String getValue(); /** * @return 所属的 {@link FieldMeta} */ FieldMeta getFieldMeta(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy