org.nodal.model
Interface ShortSeq

All Superinterfaces:
DoubleSeq, FloatSeq, IntSeq, LongSeq, Seq
All Known Subinterfaces:
ByteSeq

public interface ShortSeq
extends IntSeq

A subclass of Seq for accessing sequences of shorts.

Author:
leei

Nested Class Summary
 
Nested classes inherited from class org.nodal.model.Seq
Seq.SeqType
 
Method Summary
 short shortAt(int i)
          Access the unboxed short at index i in the sequence.
 
Methods inherited from interface org.nodal.model.IntSeq
intAt
 
Methods inherited from interface org.nodal.model.LongSeq
longAt
 
Methods inherited from interface org.nodal.model.Seq
elementAt, size, type
 
Methods inherited from interface org.nodal.model.FloatSeq
floatAt
 
Methods inherited from interface org.nodal.model.DoubleSeq
doubleAt
 

Method Detail

shortAt

public short shortAt(int i)
Access the unboxed short at index i in the sequence.

Parameters:
i - the index
Returns:
the value at that index