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

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

Introduction

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

The text is from its open source code.

Method

LgetLeft()

Gets the left element from this triple.

MgetMiddle()

Gets the middle element from this triple.

RgetRight()

Gets the right element from this triple.

Tripleof(final L left, final M middle, final R right)

Obtains an immutable triple of from three objects inferring the generic types.

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

StringtoString()

Returns a String representation of this triple using the format ($left,$middle,$right) .