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

prerna.util.edi.po850.enums.PO850PO1QualifierIdEnum Maven / Gradle / Ivy

The newest version!
package prerna.util.edi.po850.enums;

public enum PO850PO1QualifierIdEnum {

	SK("SK", "STOCK KEEPING UNIT"),
	UP("UP", "UPC CODE"),
	VC("VC", "VENDORS CATALOG NUMBER"),
	VN("VN", "VENDORS ITEM NUMBER"),
	BO("BO", "BUYERS CODE"),
	IN("IN", "BUYERS ITEM NUMBER")
	;
	
	private String id;
	// this is not to be used, just for human readability
	private String description;
	
	PO850PO1QualifierIdEnum(String id, String description) {
		this.id = id;
		this.description = description;
	}
	
	public String getId() {
		return this.id;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy