spreadsheet.mapper.model.msg.MessageWriteStrategies Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spreadsheet-mapper Show documentation
Show all versions of spreadsheet-mapper Show documentation
java mapping library between spreadsheet and object
The newest version!
package spreadsheet.mapper.model.msg;
import spreadsheet.mapper.model.shapes.Comment;
import spreadsheet.mapper.model.shapes.TextBox;
/**
* message writer strategies
*
* Created by hanwen on 2017/1/3.
*/
public class MessageWriteStrategies {
private MessageWriteStrategies() {
// default constructor
}
/**
* use comment
*
* @see Comment
*/
public static final String COMMENT = "comment";
/**
* use text box
*
* @see TextBox
*/
public static final String TEXT_BOX = "text_box";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy