Example usage for org.apache.hadoop.io BytesWritable equals

List of usage examples for org.apache.hadoop.io BytesWritable equals

Introduction

In this page you can find the example usage for org.apache.hadoop.io BytesWritable equals.

Prototype

@Override
public boolean equals(Object right_obj) 

Source Link

Document

Are the two byte sequences equal?

Usage

From source file:com.axiomine.largecollections.turboutil.BytesWritableList.java

License:Apache License

@Override
public int indexOf(Object o) {
    int index = -1;
    int myIndex = -1;
    Iterator<BytesWritable> iter = this.iterator();
    while (iter.hasNext()) {
        index++;/*from www  .  j  av a 2s.c o  m*/
        BytesWritable e = iter.next();
        if (e.equals(o)) {
            myIndex = index;
            break;
        }
    }
    return myIndex;
}

From source file:com.axiomine.largecollections.turboutil.BytesWritableList.java

License:Apache License

@Override
public int lastIndexOf(Object o) {
    int index = -1;
    int myIndex = -1;
    Iterator<BytesWritable> iter = this.iterator();
    while (iter.hasNext()) {
        index++;//from w w  w  .  j av  a2s  . co m
        BytesWritable e = iter.next();
        if (e.equals(o)) {
            myIndex = index;
        }
    }
    return myIndex;

}