Javatuples 简明教程

JavaTuples - LabelValues Class

Introduction

org.javatuples.LabelValue 类表示一个元组,其两个元素置为 0 和 1 的位置,分别重命名为“label”和“value”。

The org.javatuples.LabelValue class represents a Tuple with two elements with positions 0 and 1 renamed as "label" and "value", respectively.

Class Declaration

以下是 org.javatuples.LabelValue 类的声明:

Following is the declaration for org.javatuples.LabelValue class −

public final class LabelValue<A,B>
   extends Tuple
      implements IValue0<A>, IValue1<B>

Class Constructor

Sr.No.

Constructor & Description

1

LabelValue(A value0, B value1) This creates a LabelValue Tuple.

Class Methods

Sr.No.

Method & Description

1

static <X> LabelValue<X,X> fromArray(X[] array) Create tuple from array.

2

static <X> LabelValue<X,X> fromCollection(Collection<X> collection) Create tuple from collection.

3

static <X> LabelValue<X,X> fromIterable(Iterable<X> iterable) Create tuple from iterable.

4

static <X> LabelValue<X,X> fromIterable(Iterable<X> iterable, int index) Create tuple from iterable, starting from the specified index.

5

A getLabel() Return the label.

6

int getSize() Return the size of the tuple.

7

A getValue() Returns the value of the tuple.

8

<X> LabelValue<X,B> setLabel(X label) set the label and return the tuple.

9

<X> LabelValue<A,Y> setValue(Y value) set the value and return the tuple.

10

static <A,B> LabelValue<A,B> with(A value0, B value1) Create the tuple using given value.

Methods inherite

此类从以下类中继承方法:

This class inherits methods from the following classes −

  1. org.javatuples.Tuple

  2. Object

Example

我们来看一下 LabelValue 类的实际应用。在这里,我们将看到如何使用各种方法。

Let’s see LabelValue Class in action. Here we’ll see how to use various methods.

C:&gt;JavaTuples 中创建一个名为 TupleTester 的 Java 类文件。

Create a java class file named TupleTester in C:\>JavaTuples.

文件:TupleTester.java

File: TupleTester.java

package com.tutorialspoint;
import java.util.ArrayList;
import java.util.List;
import org.javatuples.LabelValue;
public class TupleTester {
   public static void main(String args[]){
      LabelValue<Integer, Integer> labelValue = LabelValue.with(5,6);
      System.out.println(labelValue);
      List<Integer> list = new ArrayList<>();
      list.add(1);
      list.add(2);
      Integer label = labelValue.getLabel();
      System.out.println(label);
      Integer value = labelValue.getValue();
      System.out.println(value);
      LabelValue<Integer, Integer> labelValue1
         = LabelValue.fromCollection(list);
      System.out.println(labelValue1);
   }
}

Verify the result

Verify the result

使用以下 javac 编译器编译类:

Compile the classes using javac compiler as follows −

C:\JavaTuples>javac -cp javatuples-1.2.jar ./com/tutorialspoint/TupleTester.java

现在运行 TupleTester 查看结果:

Now run the TupleTester to see the result −

C:\JavaTuples>java  -cp .;javatuples-1.2.jar com.tutorialspoint.TupleTester

Output

验证输出

Verify the Output

[5, 6]
5
6
[1, 2]