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

com.activitystream.aspects.demography.MaritalStatus Maven / Gradle / Ivy

Go to download

For a description please see https://github.com/activitystream/as-sdk-java

There is a newer version: 0.5.8
Show newest version
package com.activitystream.aspects.demography;

public enum MaritalStatus {
    SINGLE("Single"),
    MARRIED("Married"),
    IN_PARTNERSHIP("In-Partnership"),
    WIDOWED("Widowed"),
    DIVORCED("Divorced"),
    SEPARATED("Separated"),
    OTHER("Other"),
    ;
    private final String maritalStatus;

    public String getMaritalStatus() {
        return maritalStatus;
    }

    MaritalStatus(final String maritalStatus){
        this.maritalStatus = maritalStatus;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy