com.celexus.conniption.model.util.OrderField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of conniption Show documentation
Show all versions of conniption Show documentation
The missing tradeking API for Java
The newest version!
package com.celexus.conniption.model.util;
import java.io.Serializable;
public enum OrderField implements Serializable
{
CLIENT_ORDER_ID("//clientorder"),
ORDER_STATUS("//orderstatus"),
ERROR("//error");
private String tag;
OrderField(String tag)
{
this.tag = tag;
}
@Override
public String toString()
{
return tag;
}
public String getPath()
{
return tag;
}
}