Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getTypesString (0.41 sec)

  1. guava-tests/test/com/google/common/collect/FauxveridesTest.java

        }
    
        @Override
        public String toString() {
          return bounds.equals(ImmutableList.of(Object.class))
              ? name
              : name + " extends " + getTypesString(bounds);
        }
      }
    
      private static String getTypesString(List<? extends Type> types) {
        List<String> names = transform(types, SIMPLE_NAME_GETTER);
        return Joiner.on(", ").join(names);
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 9.4K bytes
    - Viewed (0)
Back to top