Uses of Package
org.eclipse.collections.api.tuple.primitive

Packages that use org.eclipse.collections.api.tuple.primitive 
Package Description
org.eclipse.collections.api.bag
This package contains interfaces for Bag API.
org.eclipse.collections.api.bag.primitive
This package contains API for Primitive Bags with Mutable and Immutable variants.
org.eclipse.collections.api.factory.bag
This package contains factory API for creating instance of type Bag.
org.eclipse.collections.api.list.primitive
This package contains mutable and immutable primitive list API.
org.eclipse.collections.api.map.primitive
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
org.eclipse.collections.impl.bag.immutable
This package contains implementations of the ImmutableBag interface.
org.eclipse.collections.impl.bag.mutable
This package contains implementations of the MutableBag interface.
org.eclipse.collections.impl.bag.mutable.primitive
This package contains implementations of the mutable primitive bag interfaces.
org.eclipse.collections.impl.bag.sorted.mutable
This package contains implementations of MutableSortedBag.
org.eclipse.collections.impl.collector  
org.eclipse.collections.impl.factory.primitive
This package contains static utilities for creating immutable primitive collection factories.
org.eclipse.collections.impl.list.mutable.primitive
This package contains implementations of the mutable primitive list interfaces.
org.eclipse.collections.impl.list.primitive
This package contains implementations of the primitive list interfaces.
org.eclipse.collections.impl.map.mutable.primitive
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
org.eclipse.collections.impl.string.immutable  
org.eclipse.collections.impl.tuple.primitive  
  • Classes in org.eclipse.collections.api.tuple.primitive used by org.eclipse.collections.api.bag 
    Class Description
    ObjectIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, int).
  • Classes in org.eclipse.collections.api.tuple.primitive used by org.eclipse.collections.api.bag.primitive 
    Class Description
    BooleanIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(boolean, int).
    ByteIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, int).
    CharIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, int).
    DoubleIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, int).
    FloatIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, int).
    IntIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, int).
    LongIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, int).
    ShortIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, int).
  • Classes in org.eclipse.collections.api.tuple.primitive used by org.eclipse.collections.api.factory.bag 
    Class Description
    ObjectIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, int).
  • Classes in org.eclipse.collections.api.tuple.primitive used by org.eclipse.collections.api.list.primitive 
    Class Description
    BooleanBooleanPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(boolean, boolean).
    BooleanObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(boolean, Object).
    ByteBytePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, byte).
    ByteObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, Object).
    CharCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, char).
    CharObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, Object).
    DoubleDoublePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, double).
    DoubleObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, Object).
    FloatFloatPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, float).
    FloatObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, Object).
    IntIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, int).
    IntObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, Object).
    LongLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, long).
    LongObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, Object).
    ShortObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, Object).
    ShortShortPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, short).
  • Classes in org.eclipse.collections.api.tuple.primitive used by org.eclipse.collections.api.map.primitive 
    Class Description
    ByteBooleanPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, boolean).
    ByteBytePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, byte).
    ByteCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, char).
    ByteDoublePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, double).
    ByteFloatPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, float).
    ByteIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, int).
    ByteLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, long).
    ByteObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, Object).
    ByteShortPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, short).
    CharBooleanPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, boolean).
    CharBytePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, byte).
    CharCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, char).
    CharDoublePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, double).
    CharFloatPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, float).
    CharIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, int).
    CharLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, long).
    CharObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, Object).
    CharShortPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, short).
    DoubleBooleanPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, boolean).
    DoubleBytePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, byte).
    DoubleCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, char).
    DoubleDoublePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, double).
    DoubleFloatPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, float).
    DoubleIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, int).
    DoubleLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, long).
    DoubleObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, Object).
    DoubleShortPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, short).
    FloatBooleanPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, boolean).
    FloatBytePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, byte).
    FloatCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, char).
    FloatDoublePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, double).
    FloatFloatPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, float).
    FloatIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, int).
    FloatLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, long).
    FloatObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, Object).
    FloatShortPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, short).
    IntBooleanPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, boolean).
    IntBytePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, byte).
    IntCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, char).
    IntDoublePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, double).
    IntFloatPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, float).
    IntIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, int).
    IntLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, long).
    IntObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, Object).
    IntShortPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, short).
    LongBooleanPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, boolean).
    LongBytePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, byte).
    LongCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, char).
    LongDoublePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, double).
    LongFloatPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, float).
    LongIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, int).
    LongLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, long).
    LongObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, Object).
    LongShortPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, short).
    ObjectBooleanPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, boolean).
    ObjectBytePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, byte).
    ObjectCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, char).
    ObjectDoublePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, double).
    ObjectFloatPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, float).
    ObjectIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, int).
    ObjectLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, long).
    ObjectShortPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, short).
    ShortBooleanPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, boolean).
    ShortBytePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, byte).
    ShortCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, char).
    ShortDoublePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, double).
    ShortFloatPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, float).
    ShortIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, int).
    ShortLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, long).
    ShortObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, Object).
    ShortShortPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, short).
  • Classes in org.eclipse.collections.api.tuple.primitive used by org.eclipse.collections.impl.bag.immutable 
    Class Description
    ObjectIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, int).
  • Classes in org.eclipse.collections.api.tuple.primitive used by org.eclipse.collections.impl.bag.mutable 
    Class Description
    ObjectIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, int).
  • Classes in org.eclipse.collections.api.tuple.primitive used by org.eclipse.collections.impl.bag.mutable.primitive 
    Class Description
    BooleanIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(boolean, int).
    ByteIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, int).
    CharIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, int).
    DoubleIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, int).
    FloatIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, int).
    IntIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, int).
    LongIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, int).
    ShortIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, int).
  • Classes in org.eclipse.collections.api.tuple.primitive used by org.eclipse.collections.impl.bag.sorted.mutable 
    Class Description
    ObjectIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, int).
  • Classes in org.eclipse.collections.api.tuple.primitive used by org.eclipse.collections.impl.collector 
    Class Description
    ObjectIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, int).
  • Classes in org.eclipse.collections.api.tuple.primitive used by org.eclipse.collections.impl.factory.primitive 
    Class Description
    BooleanBooleanPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(boolean, boolean).
    ByteBytePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, byte).
    CharCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, char).
    DoubleDoublePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, double).
    FloatFloatPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, float).
    IntIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, int).
    LongLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, long).
    ShortShortPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, short).
  • Classes in org.eclipse.collections.api.tuple.primitive used by org.eclipse.collections.impl.list.mutable.primitive 
    Class Description
    BooleanBooleanPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(boolean, boolean).
    BooleanObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(boolean, Object).
    ByteBytePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, byte).
    ByteObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, Object).
    CharCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, char).
    CharObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, Object).
    DoubleDoublePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, double).
    DoubleObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, Object).
    FloatFloatPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, float).
    FloatObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, Object).
    IntIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, int).
    IntObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, Object).
    LongLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, long).
    LongObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, Object).
    ShortObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, Object).
    ShortShortPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, short).
  • Classes in org.eclipse.collections.api.tuple.primitive used by org.eclipse.collections.impl.list.primitive 
    Class Description
    IntIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, int).
    IntObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, Object).
    LongLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, long).
    LongObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, Object).
  • Classes in org.eclipse.collections.api.tuple.primitive used by org.eclipse.collections.impl.map.mutable.primitive 
    Class Description
    ByteBooleanPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, boolean).
    ByteBytePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, byte).
    ByteCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, char).
    ByteDoublePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, double).
    ByteFloatPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, float).
    ByteIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, int).
    ByteLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, long).
    ByteObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, Object).
    ByteShortPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, short).
    CharBooleanPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, boolean).
    CharBytePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, byte).
    CharCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, char).
    CharDoublePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, double).
    CharFloatPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, float).
    CharIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, int).
    CharLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, long).
    CharObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, Object).
    CharShortPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, short).
    DoubleBooleanPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, boolean).
    DoubleBytePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, byte).
    DoubleCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, char).
    DoubleDoublePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, double).
    DoubleFloatPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, float).
    DoubleIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, int).
    DoubleLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, long).
    DoubleObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, Object).
    DoubleShortPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, short).
    FloatBooleanPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, boolean).
    FloatBytePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, byte).
    FloatCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, char).
    FloatDoublePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, double).
    FloatFloatPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, float).
    FloatIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, int).
    FloatLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, long).
    FloatObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, Object).
    FloatShortPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, short).
    IntBooleanPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, boolean).
    IntBytePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, byte).
    IntCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, char).
    IntDoublePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, double).
    IntFloatPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, float).
    IntIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, int).
    IntLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, long).
    IntObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, Object).
    IntShortPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, short).
    LongBooleanPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, boolean).
    LongBytePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, byte).
    LongCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, char).
    LongDoublePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, double).
    LongFloatPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, float).
    LongIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, int).
    LongLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, long).
    LongObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, Object).
    LongShortPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, short).
    ObjectBooleanPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, boolean).
    ObjectBytePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, byte).
    ObjectCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, char).
    ObjectDoublePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, double).
    ObjectFloatPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, float).
    ObjectIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, int).
    ObjectLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, long).
    ObjectShortPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, short).
    ShortBooleanPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, boolean).
    ShortBytePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, byte).
    ShortCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, char).
    ShortDoublePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, double).
    ShortFloatPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, float).
    ShortIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, int).
    ShortLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, long).
    ShortObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, Object).
    ShortShortPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, short).
  • Classes in org.eclipse.collections.api.tuple.primitive used by org.eclipse.collections.impl.string.immutable 
    Class Description
    CharCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, char).
    CharObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, Object).
    IntIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, int).
    IntObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, Object).
  • Classes in org.eclipse.collections.api.tuple.primitive used by org.eclipse.collections.impl.tuple.primitive 
    Class Description
    BooleanBooleanPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(boolean, boolean).
    BooleanBytePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(boolean, byte).
    BooleanCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(boolean, char).
    BooleanDoublePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(boolean, double).
    BooleanFloatPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(boolean, float).
    BooleanIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(boolean, int).
    BooleanLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(boolean, long).
    BooleanObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(boolean, Object).
    BooleanShortPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(boolean, short).
    ByteBooleanPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, boolean).
    ByteBytePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, byte).
    ByteCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, char).
    ByteDoublePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, double).
    ByteFloatPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, float).
    ByteIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, int).
    ByteLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, long).
    ByteObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, Object).
    ByteShortPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(byte, short).
    CharBooleanPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, boolean).
    CharBytePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, byte).
    CharCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, char).
    CharDoublePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, double).
    CharFloatPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, float).
    CharIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, int).
    CharLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, long).
    CharObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, Object).
    CharShortPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(char, short).
    DoubleBooleanPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, boolean).
    DoubleBytePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, byte).
    DoubleCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, char).
    DoubleDoublePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, double).
    DoubleFloatPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, float).
    DoubleIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, int).
    DoubleLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, long).
    DoubleObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, Object).
    DoubleShortPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(double, short).
    FloatBooleanPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, boolean).
    FloatBytePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, byte).
    FloatCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, char).
    FloatDoublePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, double).
    FloatFloatPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, float).
    FloatIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, int).
    FloatLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, long).
    FloatObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, Object).
    FloatShortPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(float, short).
    IntBooleanPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, boolean).
    IntBytePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, byte).
    IntCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, char).
    IntDoublePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, double).
    IntFloatPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, float).
    IntIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, int).
    IntLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, long).
    IntObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, Object).
    IntShortPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(int, short).
    LongBooleanPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, boolean).
    LongBytePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, byte).
    LongCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, char).
    LongDoublePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, double).
    LongFloatPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, float).
    LongIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, int).
    LongLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, long).
    LongObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, Object).
    LongShortPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(long, short).
    ObjectBooleanPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, boolean).
    ObjectBytePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, byte).
    ObjectCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, char).
    ObjectDoublePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, double).
    ObjectFloatPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, float).
    ObjectIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, int).
    ObjectLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, long).
    ObjectShortPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(Object, short).
    ShortBooleanPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, boolean).
    ShortBytePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, byte).
    ShortCharPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, char).
    ShortDoublePair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, double).
    ShortFloatPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, float).
    ShortIntPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, int).
    ShortLongPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, long).
    ShortObjectPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, Object).
    ShortShortPair
    An instance of this interface can be created by calling PrimitiveTuples.pair(short, short).