org.zendesk.client.v2.model.Priority Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zendesk-java-client Show documentation
Show all versions of zendesk-java-client Show documentation
Java client for the Zendesk API
The newest version!
package org.zendesk.client.v2.model;
/**
* @author stephenc
* @since 05/04/2013 08:57
*/
public enum Priority {
URGENT,
HIGH,
NORMAL,
LOW;
@Override
public String toString() {
return super.toString().toLowerCase();
}
}