Skip to content

Commit

Permalink
ValueIterableVector now extends ValueVector
Browse files Browse the repository at this point in the history
  • Loading branch information
normanj-bitquill committed Jun 12, 2024
1 parent b795f12 commit e6c5efa
Showing 1 changed file with 1 addition and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,22 +19,7 @@

import java.util.Iterator;

public interface ValueIterableVector<T> {
/**
* Gets the number of values.
*
* @return number of values in the vector
*/
int getValueCount();

/**
* Get friendly type object from the vector.
*
* @param index index of object to get
* @return friendly type object
*/
Object getObject(int index);

public interface ValueIterableVector<T> extends ValueVector {
/**
* Get an Iterable that can be used to iterate over the values in the
* vector.
Expand Down

0 comments on commit e6c5efa

Please sign in to comment.