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

lodsve.wechat.enums.Sex Maven / Gradle / Ivy

There is a newer version: 2.7.5-RELEASE
Show newest version
package lodsve.wechat.enums;

import com.fasterxml.jackson.annotation.JsonCreator;

/**
 * 用户性别枚举.
 *
 * @author sunhao([email protected])
 * @version V1.0, 16/3/2 下午4:27
 */
public enum Sex {
    MAN, WOMAN, UNKNOWN;

    @JsonCreator
    public static Sex eval(int index) {
        switch (index) {
            case 1:
                return MAN;
            case 2:
                return WOMAN;
            case 0:
                return UNKNOWN;
            default:
                break;
        }

        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy