Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for last (0.19 sec)

  1. src/test/java/org/codelibs/core/lang/GenericsUtilTest.java

        /**
         *
         */
        public interface ListType {
    
            /**
             * @return List
             */
            List<String> listOfString();
    
            /**
             * @return List
             */
            List<Class<?>> listOfClass();
    
            /**
             * @return List
             */
            List<?> listOfWildcard();
        }
    
        /**
         *
         */
        public interface SetType {
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/io/TraversalUtil.java

            final List<Traverser> list = newArrayList();
            for (final Iterator<URL> it = ClassLoaderUtil.getResources(baseName); it.hasNext();) {
                final URL url = it.next();
                final Traverser resourcesType = getTraverser(url, rootPackage, baseName);
                if (resourcesType != null) {
                    list.add(resourcesType);
                }
            }
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 19.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

            }
        }
    
        private boolean isExceptPrivateAccessible(Method method) {
            // to avoid warning of JDK-internal access at Java11
            // Lasta Di does not need private access to the classes
            final String fqcn = method.getDeclaringClass().getName();
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 15.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

            final ArrayMap<String, List<MethodDesc>> methodDescListMap = new ArrayMap<>();
            for (final Method method : beanClass.getMethods()) {
                if (method.isBridge() || method.isSynthetic()) {
                    continue;
                }
                final String methodName = method.getName();
                List<MethodDesc> list = methodDescListMap.get(methodName);
                if (list == null) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 26.1K bytes
    - Viewed (0)
Back to top