
com.activitystream.aspects.demography.MaritalStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
For a description please see https://github.com/activitystream/as-sdk-java
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