Class OF10MatchDeserializer
java.lang.Object
org.opendaylight.openflowjava.protocol.impl.util.OF10MatchDeserializer
- All Implemented Interfaces:
- OFDeserializer<MatchV10>,- OFGeneralDeserializer
Deserializes ofp_match (OpenFlow v1.0) structure.
- Author:
- michal.polkorab
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionstatic FlowWildcardsV10createWildcards(long input) Decodes FlowWildcards.static @NonNull org.opendaylight.yangtools.yang.common.Uint8decodeNwDstMask(long input) Decodes NwDstMask from FlowWildcards (represented as uint32).static @NonNull org.opendaylight.yangtools.yang.common.Uint8decodeNwSrcMask(long input) Decodes NwSrcMask from FlowWildcards (represented as uint32).deserialize(io.netty.buffer.ByteBuf input) Transforms byte message into POJO/DTO (of type E).
- 
Constructor Details- 
OF10MatchDeserializerpublic OF10MatchDeserializer()
 
- 
- 
Method Details- 
deserializeDescription copied from interface:OFDeserializerTransforms byte message into POJO/DTO (of type E).- Specified by:
- deserializein interface- OFDeserializer<MatchV10>
- Parameters:
- input- message as bytes in ByteBuf
- Returns:
- POJO/DTO
 
- 
createWildcardsDecodes FlowWildcards.- Parameters:
- input- input ByteBuf
- Returns:
- decoded FlowWildcardsV10
 
- 
decodeNwSrcMaskpublic static @NonNull org.opendaylight.yangtools.yang.common.Uint8 decodeNwSrcMask(long input) Decodes NwSrcMask from FlowWildcards (represented as uint32).- Parameters:
- input- binary FlowWildcards
- Returns:
- decoded NwSrcMask
 
- 
decodeNwDstMaskpublic static @NonNull org.opendaylight.yangtools.yang.common.Uint8 decodeNwDstMask(long input) Decodes NwDstMask from FlowWildcards (represented as uint32).- Parameters:
- input- binary FlowWildcards
- Returns:
- decoded NwDstMask
 
 
-