Package com.caplin.motif.fx.calendar
Class SettlementDateSubjectInfo
- java.lang.Object
-
- com.caplin.motif.fx.calendar.SettlementDateSubjectInfo
-
- All Implemented Interfaces:
SubjectInfo
- Direct Known Subclasses:
UserSettlementDateSubjectInfo
public class SettlementDateSubjectInfo extends Object implements SubjectInfo
A class representing the fields parsed from a settlement date subject.
-
-
Constructor Summary
Constructors Constructor Description SettlementDateSubjectInfo(String subject, String currencyPair, String year, String month)
Creates a SettlementDateSubjectInfo with the given parameters.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCurrencyPair()
Returns the currency pair that was parsed to create this SettlementDateSubjectInfo.String
getMonth()
Returns the month that was parsed to create this SettlementDateSubjectInfo.String
getSubject()
Returns the original subject that was parsed to create this SubjectInfoString
getYear()
Returns the year that was parsed to create this SettlementDateSubjectInfo.
-
-
-
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 that was parsed to create this SettlementDateSubjectInfo.- Returns:
- The currency pair.
-
getYear
public String getYear()
Returns the year that was parsed to create this SettlementDateSubjectInfo.- Returns:
- The year.
-
getMonth
public String getMonth()
Returns the month that was parsed to create this SettlementDateSubjectInfo.- Returns:
- The month.
-
-