
net.interfax.rest.client.domain.enums.Disposition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-client Show documentation
Show all versions of api-client Show documentation
Library that enables using InterFAX HTTP APIs using Java
package net.interfax.rest.client.domain.enums;
public enum Disposition {
singleUse ("singleUse"),
multiUse ("multiUse"),
permanent ("permanent");
private final String name;
private Disposition(String s) {
name = s;
}
public boolean equalsName(String otherName) {
return otherName != null && name.equals(otherName);
}
public String toString() {
return this.name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy