Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Other (0.16 sec)

  1. src/main/java/org/codelibs/core/misc/Tuple4.java

            @SuppressWarnings("unchecked")
            final Tuple4<T1, T2, T3, T4> other = (Tuple4<T1, T2, T3, T4>) obj;
            if (value1 == null) {
                if (other.value1 != null) {
                    return false;
                }
            } else if (!value1.equals(other.value1)) {
                return false;
            }
            if (value2 == null) {
                if (other.value2 != null) {
                    return false;
                }
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/lang/ClassLoaderUtil.java

        }
    
        /**
         * クラスローダ<code>other</code>がクラスローダ<code>cl</code>の祖先なら<code>true</code>
         * を返します。
         *
         * @param cl
         *            クラスローダ
         * @param other
         *            クラスローダ
         * @return クラスローダ<code>other</code>がクラスローダ<code>cl</code>の祖先なら
         *         <code>true</code>
         */
    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/misc/Tuple5.java

            final Tuple5<T1, T2, T3, T4, T5> other = (Tuple5<T1, T2, T3, T4, T5>) obj;
            if (value1 == null) {
                if (other.value1 != null) {
                    return false;
                }
            } else if (!value1.equals(other.value1)) {
                return false;
            }
            if (value2 == null) {
                if (other.value2 != null) {
                    return false;
                }
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/misc/Tuple3.java

            @SuppressWarnings("unchecked")
            final Tuple3<T1, T2, T3> other = (Tuple3<T1, T2, T3>) obj;
            if (value1 == null) {
                if (other.value1 != null) {
                    return false;
                }
            } else if (!value1.equals(other.value1)) {
                return false;
            }
            if (value2 == null) {
                if (other.value2 != null) {
                    return false;
                }
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/misc/Pair.java

            }
            @SuppressWarnings("unchecked")
            final Pair<T1, T2> other = (Pair<T1, T2>) obj;
            if (first == null) {
                if (other.first != null) {
                    return false;
                }
            } else if (!first.equals(other.first)) {
                return false;
            }
            if (second == null) {
                if (other.second != null) {
                    return false;
                }
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/beans/util/MyBean3.java

    public class MyBean3 {
    
        /**
         *
         */
        public String abc_value = "abc";
    
        /**
         *
         */
        public String xyz_value = "xyz";
    
        /**
         *
         */
        public String other = "other";
    
        /**
         *
         */
        public String abc_exclude = "exclude";
    
        /**
         *
         */
        public String ab = "ab";
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1011 bytes
    - Viewed (0)
Back to top