Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for T4 (0.01 sec)

  1. src/main/java/org/codelibs/core/misc/Tuple4.java

     *            The type of the third value
     * @param <T4>
     *            The type of the fourth value
     */
    public class Tuple4<T1, T2, T3, T4> {
    
        /** The first value */
        protected T1 value1;
    
        /** The second value */
        protected T2 value2;
    
        /** The third value */
        protected T3 value3;
    
        /** The fourth value */
        protected T4 value4;
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/misc/Tuple5.java

         *            The fourth value
         * @param value5
         *            The fifth value
         * @return A tuple of five values
         */
        public static <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5> tuple5(final T1 value1, final T2 value2, final T3 value3, final T4 value4,
                final T5 value5) {
            return new Tuple5<>(value1, value2, value3, value4, value5);
        }
    
        /**
         * Constructs an instance.
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertThat(actualSubtype.getActualTypeArguments()[0]).isInstanceOf(WildcardType.class);
      }
    
      public <T> void testGetSubtype_manyGenericArgs() {
        class FourTypeArgs<T1, T2, T3, T4> {}
        class ThreeTypeArgs<T1, T2, T3> extends FourTypeArgs<T1, T2, T3, String> {}
        TypeToken<FourTypeArgs<T, Integer, ?, ?>> supertype =
            new TypeToken<FourTypeArgs<T, Integer, ?, ?>>() {};
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Sep 02 17:23:59 UTC 2025
    - 89K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertThat(actualSubtype.getActualTypeArguments()[0]).isInstanceOf(WildcardType.class);
      }
    
      public <T> void testGetSubtype_manyGenericArgs() {
        class FourTypeArgs<T1, T2, T3, T4> {}
        class ThreeTypeArgs<T1, T2, T3> extends FourTypeArgs<T1, T2, T3, String> {}
        TypeToken<FourTypeArgs<T, Integer, ?, ?>> supertype =
            new TypeToken<FourTypeArgs<T, Integer, ?, ?>>() {};
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Sep 02 17:23:59 UTC 2025
    - 89K bytes
    - Viewed (0)
Back to top