
com.podio.app.ApplicationFieldStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
The official Java wrapper for the Podio API
The newest version!
package com.podio.app;
import org.codehaus.jackson.annotate.JsonCreator;
import org.codehaus.jackson.annotate.JsonValue;
public enum ApplicationFieldStatus {
/**
* The field is active.
*/
ACTIVE,
/**
* The field has been deleted.
*/
DELETED;
@Override
@JsonValue
public String toString() {
return name().toLowerCase();
}
@JsonCreator()
public static ApplicationFieldStatus getByName(String value) {
return ApplicationFieldStatus.valueOf(value.toUpperCase());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy