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

me.pagar.CustomerDocumentType Maven / Gradle / Ivy

The newest version!
package me.pagar;

public enum CustomerDocumentType {
	NONE("none"),cpf("cpf"),cnpj("cnpj"),passport("passport"),other("other");
	private String type;

	CustomerDocumentType(String type){
		this.type=type;
	}
	
	@Override
	public String toString() {
	return type;
	}
};





© 2015 - 2024 Weber Informatics LLC | Privacy Policy