com.adyen.enums.Gender Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adyen-java-api-library Show documentation
Show all versions of adyen-java-api-library Show documentation
Adyen API Client Library for Java
package com.adyen.enums;
public enum Gender {
MALE {
public String toString() {
return "MALE";
}
},
FEMALE {
public String toString() {
return "FEMALE";
}
},
UNKNOWN {
public String toString() {
return "UNKNOWN";
}
}
}