Package org.yamcs.parameterarchive
Class LongValueSegment
java.lang.Object
org.yamcs.parameterarchive.BaseSegment
org.yamcs.parameterarchive.LongValueSegment
- All Implemented Interfaces:
ValueSegment
-
Field Summary
Fields inherited from class org.yamcs.parameterarchive.BaseSegment
FORMAT_ID_BinaryValueSegment, FORMAT_ID_BooleanValueSegment, FORMAT_ID_DoubleValueSegment, FORMAT_ID_FloatValueSegment, FORMAT_ID_GapSegment, FORMAT_ID_GenericValueSegment, FORMAT_ID_IntValueSegment, FORMAT_ID_LongValueSegment, FORMAT_ID_ParameterStatusSegment, FORMAT_ID_SortedTimeValueSegmentV1, FORMAT_ID_SortedTimeValueSegmentV2, FORMAT_ID_StringValueSegment, formatId
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Add data at the end of the segment.int
getRange
(int posStart, int posStop, boolean ascending) returns an array containing the values in the range [posStart, posStop) if ascending or [posStop, posStart) if descendinggetValue
(int index) returns Value at position indexvoid
Insert data at position pos.static LongValueSegment
parseFrom
(ByteBuffer bb) int
size()
toString()
void
writeTo
(ByteBuffer bb) Methods inherited from class org.yamcs.parameterarchive.BaseSegment
consolidate, getFormatId, makeWritable, parseSegment
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.yamcs.parameterarchive.ValueSegment
consolidate, makeWritable
-
Method Details
-
insert
Description copied from interface:ValueSegment
Insert data at position pos. The data at the subsequent positions is shifted to the right.- Specified by:
insert
in interfaceValueSegment
-
add
Description copied from interface:ValueSegment
Add data at the end of the segment.- Specified by:
add
in interfaceValueSegment
-
writeTo
- Specified by:
writeTo
in classBaseSegment
-
parseFrom
- Throws:
DecodingException
-
getMaxSerializedSize
public int getMaxSerializedSize()- Specified by:
getMaxSerializedSize
in classBaseSegment
- Returns:
- a high approximation for the serialized size in order to allocate a ByteBuffer big enough
-
getRange
Description copied from interface:ValueSegment
returns an array containing the values in the range [posStart, posStop) if ascending or [posStop, posStart) if descending- Specified by:
getRange
in interfaceValueSegment
- Returns:
- an array containing the values in the specified range
-
getValue
Description copied from interface:ValueSegment
returns Value at position index- Specified by:
getValue
in interfaceValueSegment
- Returns:
- the value at the index
-
size
public int size()- Specified by:
size
in interfaceValueSegment
- Specified by:
size
in classBaseSegment
-
toString
-