Package org.orekit.gnss.metric.parser
Class PythonEncodedMessage
- java.lang.Object
-
- org.orekit.gnss.metric.parser.PythonEncodedMessage
-
- All Implemented Interfaces:
EncodedMessage
public class PythonEncodedMessage extends Object implements EncodedMessage
-
-
Field Summary
Fields Modifier and Type Field Description protected long
pythonObject
Part of JCC Python interface to object
-
Constructor Summary
Constructors Constructor Description PythonEncodedMessage()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
extractBits(int n)
Extract the next n bits from the encoded message.void
finalize()
void
pythonDecRef()
long
pythonExtension()
void
pythonExtension(long pythonObject)
-
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.orekit.gnss.metric.parser.EncodedMessage
start
-
-
-
-
Method Detail
-
pythonExtension
public void pythonExtension(long pythonObject)
-
pythonExtension
public long pythonExtension()
-
finalize
public void finalize() throws Throwable
-
pythonDecRef
public void pythonDecRef()
-
extractBits
public long extractBits(int n)
Description copied from interface:EncodedMessage
Extract the next n bits from the encoded message.- Specified by:
extractBits
in interfaceEncodedMessage
- Parameters:
n
- number of bits to extract (cannot exceed 32 bits)- Returns:
- bits packed as the LSB of a 64 bits primitive long
-
-