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

com.adyen.enums.Gender Maven / Gradle / Ivy

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";
        }

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy