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

commonMain.at.asitplus.wallet.cor.IsoSexEnum.kt Maven / Gradle / Ivy

The newest version!
package at.asitplus.wallet.cor

/**
 * ISO/IEC 5218 Codes for the representation of human sexes
 */
enum class IsoSexEnum(val code: Int) {

    NOT_KNOWN(0),
    MALE(1),
    FEMALE(2),
    NOT_APPLICABLE(9);

    companion object {
        fun parseCode(code: Int) = values().firstOrNull { it.code == code }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy