Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for iterare (0.3 sec)

  1. src/main/java/org/codelibs/core/lang/ClassIterator.java

         *
         * @param clazz
         *            クラス。{@literal null}であってはいけません
         * @return {@link ClassIterator}をラップした{@link Iterable}
         */
        public static Iterable<Class<?>> iterable(final Class<?> clazz) {
            return iterable(clazz, true);
        }
    
        /**
         * for each構文で使用するために{@link ClassIterator}をラップした{@link Iterable}を返します。
         *
         * @param clazz
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/beans/BeanDesc.java

         *
         * @return {@link PropertyDesc}の数
         */
        int getPropertyDescSize();
    
        /**
         * {@link PropertyDesc}の{@link Iterable}を返します。
         *
         * @return {@link PropertyDesc}の{@link Iterable}
         */
        Iterable<PropertyDesc> getPropertyDescs();
    
        /**
         * {@link FieldDesc}を持っているかどうかを返します。
         *
         * @param fieldName
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/collection/IndexedIterator.java

         *
         * @param <T>
         *            {@link Iterable}の要素型
         * @param iterable
         *            {@link Iterable}。{@literal null}であってはいけません
         * @return {@link IndexedIterator}をラップした{@link Iterable}
         */
        public static <T> Iterable<Indexed<T>> indexed(final Iterable<T> iterable) {
            assertArgumentNotNull("iterable", iterable);
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/io/LineIterator.java

        /**
         * for each構文で使用するために{@link LineIterator}をラップした{@link Iterable}を返します。
         *
         * @param reader
         *            文字列を読み込む{@link Reader}。{@literal null}であってはいけません
         * @return {@link LineIterator}をラップした{@link Iterable}
         */
        public static Iterable<String> iterable(final Reader reader) {
            assertArgumentNotNull("reader", reader);
            return iterable(new BufferedReader(reader));
        }
    
        /**
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/collection/SingleValueIterator.java

        /**
         * for each構文で使用するために{@link SingleValueIterator}をラップした{@link Iterable}を返します。
         *
         * @param <E>
         *            要素の型
         * @param value
         *            反復子が返す唯一の値
         * @return {@link SingleValueIterator}をラップした{@link Iterable}
         */
        public static <E> Iterable<E> iterable(final E value) {
            return () -> new SingleValueIterator<>(value);
        }
    
        /**
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/beans/util/CopyOptions.java

    import static org.codelibs.core.collection.CollectionsUtil.newArrayList;
    import static org.codelibs.core.collection.CollectionsUtil.newHashMap;
    import static org.codelibs.core.lang.ClassIterator.iterable;
    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotEmpty;
    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull;
    
    import java.sql.Time;
    import java.util.List;
    import java.util.Map;
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

            return propertyDescCache.getAt(index);
        }
    
        @Override
        public int getPropertyDescSize() {
            return propertyDescCache.size();
        }
    
        @Override
        public Iterable<PropertyDesc> getPropertyDescs() {
            return unmodifiableCollection(propertyDescCache.values());
        }
    
        @Override
        public boolean hasFieldDesc(final String fieldName) {
    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)
  8. src/main/java/org/codelibs/core/convert/DateConversionUtil.java

    import static java.text.DateFormat.LONG;
    import static java.text.DateFormat.MEDIUM;
    import static java.text.DateFormat.SHORT;
    import static java.text.DateFormat.getDateInstance;
    import static org.codelibs.core.collection.MultiIterator.iterable;
    import static org.codelibs.core.lang.StringUtil.isEmpty;
    import static org.codelibs.core.lang.StringUtil.isNotEmpty;
    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull;
    
    import java.text.DateFormat;
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 21.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/collection/IteratorEnumeration.java

        }
    
        /**
         * {@link IteratorEnumeration}を作成します。
         *
         * @param iterable
         *            反復可能なオブジェクト。{@literal null}であってはいけません
         */
        public IteratorEnumeration(final Iterable<T> iterable) {
            assertArgumentNotNull("iterable", iterable);
            this.iterator = iterable.iterator();
        }
    
        @Override
        public boolean hasMoreElements() {
            return iterator.hasNext();
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/collection/EnumerationIterator.java

        /**
         * for each構文で使用するために{@link Enumeration}をラップした{@link Iterable}を返します。
         *
         * @param <T>
         *            列挙する要素の型
         * @param enumeration
         *            {@link Enumeration}。{@literal null}であってはいけません
         * @return {@link Enumeration}をラップした{@link Iterable}
         */
        public static <T> Iterable<T> iterable(final Enumeration<T> enumeration) {
            assertArgumentNotNull("enumeration", enumeration);
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.4K bytes
    - Viewed (0)
Back to top