Example usage for org.apache.commons.lang3.tuple MutablePair subclass-usage

List of usage examples for org.apache.commons.lang3.tuple MutablePair subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.lang3.tuple MutablePair subclass-usage.

Usage

From source file com.thruzero.common.core.support.KeyValuePair.java

/**
 * An instance of this class represents a simple key/value pair, where the key is a String and the value is an Object (a
 * convenience function is provided to get the value as a String). An instance can be used to represent label/value pair
 * in the UI, a substitution variable/replacement for substitution strategies, etc.
 *
 * @author George Norman

From source file com.thruzero.common.core.support.PatternValuePair.java

/**
 * An instance represents a pattern/value pair, consisting of a RegEx {@code Pattern} and a corresponding {@code String}
 * replacement value, which can be passed into a function to perform substitutions.
 * <p>
 * The example below shows three PatternValuePair instances used by the HierarchicalFileWalker to perform a search and
 * replace on the contents of files in a given directory:

From source file com.ex.data.Direction.java

/**
 * This class represents one of connected directions. You should use Set collection
 * for represents all connected directions (recommended). Direction is an immutable.
 * Notation: <b>ConnId_1 [Begin_Plint : End_Plint] <--> ConnId_2 [Begin_Plint : End_Plint] </b>
 * @author ESimakin <john-24@list.ru>
 *

From source file com.ex.data.PlintDirection.java

/**
 * This class represents notation <b>Connector Id 1, Plint Number 1 <--> Connector Id 2, Plint Number 2</b>
 * @author ESimakin <john-24@list.ru>
 *
 */
public class PlintDirection extends MutablePair<ImmutablePair<Long, Integer>, ImmutablePair<Long, Integer>> {

From source file com.romeikat.datamessie.core.statistics.task.SourceAndPublished.java

class SourceAndPublished extends MutablePair<Long, LocalDate> {

    private static final long serialVersionUID = 1L;

    public SourceAndPublished(final Long sourceId, final LocalDate published) {
        super(sourceId, published);

From source file uk.ac.tgac.jellyswarm.FilePair.java

/**
 * Created with IntelliJ IDEA.
 * User: maplesod
 * Date: 11/11/13
 * Time: 14:10
 * To change this template use File | Settings | File Templates.