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

net.interfax.rest.client.domain.enums.Sharing Maven / Gradle / Ivy

There is a newer version: 0.2
Show newest version
package net.interfax.rest.client.domain.enums;

public enum Sharing {

    sharingDoc ("shared"),
    privateDoc ("private");

    private final String value;

    private Sharing(String s) {
        value = s;
    }

    public boolean equalsName(String otherName) {
        return otherName != null && value.equals(otherName);
    }

    public String toString() {
        return this.value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy