/// <summary> /// Convert a MamdaSecurityStatus to an appropriate, displayable string /// </summary> public static string toString (MamdaUncrossPriceInd.mamdaUncrossPriceInd priceInd) { switch (priceInd) { case mamdaUncrossPriceInd.UNCROSS_INDICATIVE: return UNCROSS_INDICATIVE_STR; case mamdaUncrossPriceInd.UNCROSS_FIRM: return UNCROSS_FIRM_STR; case mamdaUncrossPriceInd.UNCROSS_INSUFFICIENT_VOL: return UNCROSS_INSUFFICIENT_VOL_STR; default: return "None"; } }
public long getUncrossPriceInd() { return((long)MamdaUncrossPriceInd.mamdaAuctionPriceIndFromString(mAuctionCache.mUncrossPriceIndStr)); }