Tabnine Logo
Tuple13
Code IndexAdd Tabnine to your IDE (free)

How to use
Tuple13
in
org.apache.flink.api.java.tuple

Best Java code snippets using org.apache.flink.api.java.tuple.Tuple13 (Showing top 13 results out of 315)

origin: apache/flink

/**
* Shallow tuple copy.
* @return A new Tuple with the same fields as this.
*/
@Override
@SuppressWarnings("unchecked")
public Tuple13<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> copy() {
  return new Tuple13<>(this.f0,
    this.f1,
    this.f2,
    this.f3,
    this.f4,
    this.f5,
    this.f6,
    this.f7,
    this.f8,
    this.f9,
    this.f10,
    this.f11,
    this.f12);
}
origin: apache/flink

public Tuple13Builder<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> add(T0 value0, T1 value1, T2 value2, T3 value3, T4 value4, T5 value5, T6 value6, T7 value7, T8 value8, T9 value9, T10 value10, T11 value11, T12 value12){
  tuples.add(new Tuple13<>(value0, value1, value2, value3, value4, value5, value6, value7, value8, value9, value10, value11, value12));
  return this;
}
origin: apache/flink

  /**
   * Creates a new tuple and assigns the given values to the tuple's fields.
   * This is more convenient than using the constructor, because the compiler can
   * infer the generic type arguments implicitly. For example:
   * {@code Tuple3.of(n, x, s)}
   * instead of
   * {@code new Tuple3<Integer, Double, String>(n, x, s)}
   */
  public static <T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Tuple13<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> of(T0 value0, T1 value1, T2 value2, T3 value3, T4 value4, T5 value5, T6 value6, T7 value7, T8 value8, T9 value9, T10 value10, T11 value11, T12 value12) {
    return new Tuple13<>(value0,
      value1,
      value2,
      value3,
      value4,
      value5,
      value6,
      value7,
      value8,
      value9,
      value10,
      value11,
      value12);
  }
}
origin: apache/flink

case 11: return new Tuple11();
case 12: return new Tuple12();
case 13: return new Tuple13();
case 14: return new Tuple14();
case 15: return new Tuple15();
origin: org.apache.flink/flink-core

/**
* Shallow tuple copy.
* @return A new Tuple with the same fields as this.
*/
@Override
@SuppressWarnings("unchecked")
public Tuple13<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> copy() {
  return new Tuple13<>(this.f0,
    this.f1,
    this.f2,
    this.f3,
    this.f4,
    this.f5,
    this.f6,
    this.f7,
    this.f8,
    this.f9,
    this.f10,
    this.f11,
    this.f12);
}
origin: org.apache.flink/flink-core

  /**
   * Creates a new tuple and assigns the given values to the tuple's fields.
   * This is more convenient than using the constructor, because the compiler can
   * infer the generic type arguments implicitly. For example:
   * {@code Tuple3.of(n, x, s)}
   * instead of
   * {@code new Tuple3<Integer, Double, String>(n, x, s)}
   */
  public static <T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Tuple13<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> of(T0 value0, T1 value1, T2 value2, T3 value3, T4 value4, T5 value5, T6 value6, T7 value7, T8 value8, T9 value9, T10 value10, T11 value11, T12 value12) {
    return new Tuple13<>(value0,
      value1,
      value2,
      value3,
      value4,
      value5,
      value6,
      value7,
      value8,
      value9,
      value10,
      value11,
      value12);
  }
}
origin: com.alibaba.blink/flink-core

/**
* Shallow tuple copy.
* @return A new Tuple with the same fields as this.
*/
@Override
@SuppressWarnings("unchecked")
public Tuple13<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> copy() {
  return new Tuple13<>(this.f0,
    this.f1,
    this.f2,
    this.f3,
    this.f4,
    this.f5,
    this.f6,
    this.f7,
    this.f8,
    this.f9,
    this.f10,
    this.f11,
    this.f12);
}
origin: com.alibaba.blink/flink-core

  /**
   * Creates a new tuple and assigns the given values to the tuple's fields.
   * This is more convenient than using the constructor, because the compiler can
   * infer the generic type arguments implicitly. For example:
   * {@code Tuple3.of(n, x, s)}
   * instead of
   * {@code new Tuple3<Integer, Double, String>(n, x, s)}
   */
  public static <T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Tuple13<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> of(T0 value0, T1 value1, T2 value2, T3 value3, T4 value4, T5 value5, T6 value6, T7 value7, T8 value8, T9 value9, T10 value10, T11 value11, T12 value12) {
    return new Tuple13<>(value0,
      value1,
      value2,
      value3,
      value4,
      value5,
      value6,
      value7,
      value8,
      value9,
      value10,
      value11,
      value12);
  }
}
origin: com.alibaba.blink/flink-core

public Tuple13Builder<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> add(T0 value0, T1 value1, T2 value2, T3 value3, T4 value4, T5 value5, T6 value6, T7 value7, T8 value8, T9 value9, T10 value10, T11 value11, T12 value12){
  tuples.add(new Tuple13<>(value0, value1, value2, value3, value4, value5, value6, value7, value8, value9, value10, value11, value12));
  return this;
}
origin: org.apache.flink/flink-core

public Tuple13Builder<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> add(T0 value0, T1 value1, T2 value2, T3 value3, T4 value4, T5 value5, T6 value6, T7 value7, T8 value8, T9 value9, T10 value10, T11 value11, T12 value12){
  tuples.add(new Tuple13<>(value0, value1, value2, value3, value4, value5, value6, value7, value8, value9, value10, value11, value12));
  return this;
}
origin: org.apache.flink/flink-core

case 11: return new Tuple11();
case 12: return new Tuple12();
case 13: return new Tuple13();
case 14: return new Tuple14();
case 15: return new Tuple15();
origin: apache/bahir-flink

  return setTupleValue(new Tuple12(), row);
case 13:
  return setTupleValue(new Tuple13(), row);
case 14:
  return setTupleValue(new Tuple14(), row);
origin: haoch/flink-siddhi

  return setTupleValue(new Tuple12(), row);
case 13:
  return setTupleValue(new Tuple13(), row);
case 14:
  return setTupleValue(new Tuple14(), row);
org.apache.flink.api.java.tupleTuple13

Javadoc

A tuple with 13 fields. Tuples are strongly typed; each field may be of a separate type. The fields of the tuple can be accessed directly as public fields (f0, f1, ...) or via their position through the #getField(int) method. The tuple field positions start at zero.

Tuples are mutable types, meaning that their fields can be re-assigned. This allows functions that work with Tuples to reuse objects in order to reduce pressure on the garbage collector.

Warning: If you subclass Tuple13, then be sure to either

  • not add any new fields, or
  • make it a POJO, and always declare the element type of your DataStreams/DataSets to your descendant type. (That is, if you have a "class Foo extends Tuple13", then don't use instances of Foo in a DataStream<Tuple13> / DataSet<Tuple13>, but declare it as DataStream<Foo> / DataSet<Foo>.)

Most used methods

  • <init>
    Creates a new tuple and assigns the given values to the tuple's fields.

Popular in Java

  • Reactive rest calls using spring rest template
  • getResourceAsStream (ClassLoader)
  • setContentView (Activity)
  • putExtra (Intent)
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • JOptionPane (javax.swing)
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now