Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for Kull (0.12 sec)

  1. src/main/java/org/codelibs/core/collection/SLinkedList.java

     * @param <E>
     *            要素の型
     *
     */
    public class SLinkedList<E> implements Cloneable, Externalizable {
    
        static final long serialVersionUID = 1L;
    
        private transient Entry header = new Entry(null, null, null);
    
        private transient int size = 0;
    
        /**
         * {@link SLinkedList}を作成します。
         */
        public SLinkedList() {
            header.next = header;
            header.previous = header;
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11K bytes
    - Viewed (1)
  2. src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java

        /**
         * 指定されたロケールで{@link DateFormat#FULL}スタイルのパターン文字列を返します。
         *
         * @param locale
         *            ロケール。{@literal null}であってはいけません
         * @return {@link DateFormat#FULL}スタイルのパターン文字列
         */
        public static String getFullPattern(final Locale locale) {
            assertArgumentNotNull("locale", locale);
            return ((SimpleDateFormat) getDateTimeInstance(FULL, FULL, locale)).toPattern();
        }
    
        /**
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 22.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/lang/StringUtil.java

            return str == null ? EMPTY : str;
        }
    
        /**
         * 引数の文字列を返します。引数の文字列が<code>null</code>だったら<code>defaultStr</code>を返します。
         * <p>
         * 次のように使います.
         * </p>
         *
         * <pre>
         * StringUtil.defaultString(null, "NULL")  = "NULL"
         * StringUtil.defaultString("", "NULL")    = ""
         * StringUtil.defaultString("aaa", "NULL") = "aaa"
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 21.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/io/ResourceUtil.java

            assertArgumentNotNull("loader", loader);
    
            if (path == null || loader == null) {
                return null;
            }
            final String p = getResourcePath(path, extension);
            return loader.getResource(p);
        }
    
        /**
         * コンテキストクラスローダからリソースを検索してストリームとして返します。
         *
         * @param path
         *            リソースのパス。{@literal null}や空文字列であってはいけません
         * @return ストリーム
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/xml/DomUtil.java

         *            コンテンツ。{@literal null}であってはいけません
         * @param encoding
         *            エンコーディング。{@literal null}の場合はプラットフォームのデフォルトエンコーディングが使われます
         * @return {@link InputStream}
         */
        public static InputStream getContentsAsStream(final String contents, final String encoding) {
            assertArgumentNotNull("contents", contents);
    
            if (encoding == null) {
                return new ByteArrayInputStream(contents.getBytes());
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 10.5K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/lang/StringUtilTest.java

            assertThat(StringUtil.defaultString("aaa", null), is("aaa"));
            assertThat(StringUtil.defaultString(null, null), is(nullValue()));
        }
    
        @Test
        public void testNewStringUnsafe() {
            assertNull(StringUtil.newStringUnsafe(null));
            Method newStringUnsafeMethod = StringUtil.newStringUnsafeMethod;
            if (newStringUnsafeMethod != null) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 12K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/lang/GenericsUtil.java

        public static Type getGenericParameter(final Type type, final int index) {
            if (!(type instanceof ParameterizedType)) {
                return null;
            }
            final Type[] genericParameter = getGenericParameters(type);
            if (genericParameter == null) {
                return null;
            }
            assertArgumentArrayIndex("index", index, genericParameter.length);
            return genericParameter[index];
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/beans/util/CopyOptionsUtil.java

         * @param propertyNames
         *            プロパティ名の配列。{@literal null}や空配列であってはいけません
         * @return 操作の対象に含めないプロパティ名を指定した{@link CopyOptions}
         * @see CopyOptions#exclude(CharSequence...)
         */
        public static CopyOptions exclude(final CharSequence... propertyNames) {
            return new CopyOptions().exclude(propertyNames);
        }
    
        /**
         * {@literal null}値のプロパティを操作の対象外にした{@link CopyOptions}を返します。
         *
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/beans/impl/PropertyDescImplTest.java

        }
    
        /**
         * @throws Exception
         */
        public void testSetValue_null() throws Exception {
            final MyBean myBean = new MyBean();
            final BeanDesc beanDesc = new BeanDescImpl(MyBean.class);
            final PropertyDesc propDesc = beanDesc.getPropertyDesc("fff");
            propDesc.setValue(myBean, null);
            assertThat(myBean.getFff(), is(0));
        }
    
        /**
         * @throws Exception
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/core/convert/TimestampConversionUtilTest.java

        }
    
        @After
        public void tearDown() throws Exception {
            LocaleUtil.setDefault(null);
        }
    
        /**
         * @throws Exception
         */
        //    @Test
        //    public void testToDate_Null() throws Exception {
        //        assertThat(toDate(null, Locale.JAPAN), is(nullValue()));
        //    }
    
        /**
         * @throws Exception
         */
        @Test
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11.4K bytes
    - Viewed (0)
Back to top