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

word.w2004.elements.tableElements.TableEle Maven / Gradle / Ivy

The newest version!
package word.w2004.elements.tableElements;


public enum TableEle{	
	TH("th"), TD("td"), TF("tf"), TABLE_DEF("tableDef"); //TR("tr"),

	private String value;
	
	TableEle(String value){
		this.value = value;
	}
	
	public String getValue(){
		return this.value;
	}
	
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy