Java org.apache.commons.lang3.tuple MutablePair fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.lang3.tuple MutablePair fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.lang3.tuple MutablePair.

The text is from its open source code.

Subclass

org.apache.commons.lang3.tuple.MutablePair has subclasses.
Click this link to see all its subclasses.

Constructor

MutablePair(final L left, final R right)
Create a new pair instance.
MutablePair()
Create a new pair instance of two nulls.

Method

booleanequals(Object obj)
Indicates whether some other object is "equal to" this one.
LgetLeft()
RgetRight()
MutablePairof(final L left, final R right)

Obtains an immutable pair of from two objects inferring the generic types.

This factory allows the pair to be created using inference to obtain the generic types.

voidsetLeft(final L left)
Sets the left element of the pair.
voidsetRight(final R right)
Sets the right element of the pair.
RsetValue(final R value)
Sets the Map.Entry value.