Interface FixMessageDefinitions<T>
- All Known Implementing Classes:
AbstractFIXDefinition
,BlockDefinitionsUtils
,MessageDefinitionsUtils
public interface FixMessageDefinitions<T>
- Author:
- Serhiy_Zahriychuk Date: Sep 9, 2008
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Checks if contains input message type in dictionary of FIX protocolget()
Returns the collection of values of this Map.Gets element from map by keyReturns the messageTypes of this FixDefMap object.void
Puts the element into map.
-
Method Details
-
put
Puts the element into map.- Parameters:
elements
- the list of elements
-
get
Collection<T> get()Returns the collection of values of this Map.- Returns:
- the messageDefs (type Collection
) of this MessageTypes object.
-
get
Gets element from map by key- Parameters:
messageType
- of type String- Returns:
- instance of T
-
contains
Checks if contains input message type in dictionary of FIX protocol- Parameters:
messageType
- Message Type- Returns:
- boolean true if contains
-
getMessageTypes
Returns the messageTypes of this FixDefMap object.- Returns:
- the messageTypes (type Set
) of this FixDefMap object.
-