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

com.activitystream.aspects.demography.HousingStatus 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 HousingStatus {
    PARTIALLY_OWNED("Partially Owned"),
    FULLY_OWNED("Fully Owned"),
    RENT("Rent"),
    RENT_FREE("Rent-Free"),
    OTHER("Other"),
    ;
    private final String status;

    public String getStatus() {
        return status;
    }

    HousingStatus(final String status){
        this.status = status;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy