package com.letsvote.provider.party; /** * Possible values for the {@code gender} column of the {@code party} table. */ public enum Gender { /** * */ MALE, /** * */ FEMALE, /** * Value to use when neither male nor female */ OTHER, }