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

shz.core.enums.Sex Maven / Gradle / Ivy

package shz.core.enums;

public enum Sex implements NameCodeEnum {
    P("未知"), M("男"), F("女");

    private final String value;

    Sex(String value) {
        this.value = value;
    }

    @Override
    public String getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy