Interface DataParser

  • All Implemented Interfaces:

    
    public interface DataParser
    
                        

    Defines a parser that creates Data objects from binary data.

    Since:

    2.0

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract List<Data> parseRSCPData(ByteArray data) Parses the given ByteArray and creates a list of Data objects from it.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • parseRSCPData

         abstract List<Data> parseRSCPData(ByteArray data)

        Parses the given ByteArray and creates a list of Data objects from it.

        Currently no(!) validation is performed. If the byte array does not contain a valid RSCP format, it is therefore a matter of luck what comes out as result

        Parameters:
        data - Binary data to be parsed in RSCP Data Format
        Returns:

        List of Data objects

        Since:

        2.0