Stop installing librairies during tests
[parser.git] / verigraph / service / src / mcnet / components / Tuple.java
1 /*******************************************************************************
2  * Copyright (c) 2017 Politecnico di Torino and others.
3  *
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Apache License, Version 2.0
6  * which accompanies this distribution, and is available at
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *******************************************************************************/
9
10 package mcnet.components;
11
12 /** A data structure which is an utility to make a generic couple of objects with different types in Java
13  *
14  */
15 public class Tuple<T, U> {
16           public final T _1;
17           public final U _2;
18
19
20           public Tuple(T arg1,U arg2) {
21             super();
22             this._1 = arg1;
23             this._2 = arg2;
24           }
25
26           public Tuple(){
27                   this._1 = null;
28                     this._2 = null;
29           }
30
31           @Override
32           public String toString() {
33             return String.format("(%s, %s)", _1, _2);
34           }
35         }