Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for validateCollection (0.21 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ScalarCollectionNodeInitializerExtractionStrategy.java

                        throw new IllegalArgumentException(String.format("Cannot add an element of type %s to a collection of %s", obType, elementType));
                    }
                }
            }
    
            protected void validateCollection(Collection<? extends T> c) {
                for (T element : c) {
                    validateElementType(element);
                }
            }
    
            @Override
            public boolean add(T t) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:15:09 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top