Java org.apache.lucene.util IntsRef fields, constructors, methods, implement or subclass

Example usage for Java org.apache.lucene.util IntsRef fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.lucene.util IntsRef.

The text is from its open source code.

Constructor

IntsRef(int[] ints, int offset, int length)
This instance will directly reference ints w/o making a copy.
IntsRef(int capacity)
Create a IntsRef pointing to a new array of size capacity.
IntsRef()
Create a IntsRef with #EMPTY_INTS

Method

IntsRefdeepCopyOf(IntsRef other)
Creates a new IntsRef that points to a copy of the ints from other

The returned IntsRef will have a length of other.length and an offset of zero.

inthashCode()