Package com.caplin.motif.fx.precision
Class PrecisionSubjectInfo
- java.lang.Object
-
- com.caplin.motif.fx.precision.PrecisionSubjectInfo
-
- All Implemented Interfaces:
SubjectInfo
public class PrecisionSubjectInfo extends Object implements SubjectInfo
-
-
Constructor Summary
Constructors Constructor Description PrecisionSubjectInfo(String subject, String currencyPair, String dealtCurrency)
Constructs a PrecisionSubjectInfo based on the provided subscription parameters.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getCurrencyPair()
Returns the currency pair for the subscription.String
getDealtCurrency()
Returns the dealt currency for the subscription as a String with no guarantee of its length.String
getSubject()
Returns the original subject that was parsed to create this SubjectInfoint
hashCode()
String
toString()
-
-
-
Constructor Detail
-
PrecisionSubjectInfo
public PrecisionSubjectInfo(String subject, String currencyPair, String dealtCurrency)
Constructs a PrecisionSubjectInfo based on the provided subscription parameters.- Parameters:
subject
- The full requested subjectcurrencyPair
- The requested currency pair.dealtCurrency
- The requested dealt currency.
-
-
Method Detail
-
getSubject
public String getSubject()
Description copied from interface:SubjectInfo
Returns the original subject that was parsed to create this SubjectInfo- Specified by:
getSubject
in interfaceSubjectInfo
- Returns:
- The original subject.
-
getCurrencyPair
public String getCurrencyPair()
Returns the currency pair for the subscription.- Returns:
- The currency pair in the format
<basecurrency>_<termcurrency>
-
getDealtCurrency
public String getDealtCurrency()
Returns the dealt currency for the subscription as a String with no guarantee of its length.- Returns:
- The dealt currency for the subscription.
-
-