com.ximpleware
Interface ILongBuffer

All Known Implementing Classes:
FastLongBuffer

public interface ILongBuffer

Abstract long buffer storage interface Creation date: (11/23/03 6:13:38 PM)


Method Summary
 long longAt(int index)
          Get the long at the given index.
 int lower32At(int index)
          Get the lower 32 bit of the long at given index.
 void modifyEntry(int index, long newVal)
          Modify the entry at given index with a new val.
 int size()
          Get the number of long in the buffer.
 int upper32At(int index)
          Get the upper 32 bit of the long at the given index.
 

Method Detail

longAt

long longAt(int index)
Get the long at the given index. Creation date: (11/23/03 6:29:53 PM)

Parameters:
index - int
Returns:
long

lower32At

int lower32At(int index)
Get the lower 32 bit of the long at given index. Creation date: (11/23/03 6:45:27 PM)

Parameters:
index - int
Returns:
int

modifyEntry

void modifyEntry(int index,
                 long newVal)
Modify the entry at given index with a new val. Creation date: (11/23/03 6:42:57 PM)

Parameters:
index - int
newVal - long

size

int size()
Get the number of long in the buffer. Creation date: (11/23/03 7:22:25 PM)

Returns:
int

upper32At

int upper32At(int index)
Get the upper 32 bit of the long at the given index. Creation date: (11/23/03 6:45:27 PM)

Parameters:
index - int
Returns:
int


Copyright © 2013. All Rights Reserved.