Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 75 for geturl (0.16 sec)

  1. src/main/java/org/codelibs/core/convert/ByteConversionUtil.java

            if (o == null) {
                return null;
            } else if (o instanceof Byte) {
                return (Byte) o;
            } else if (o instanceof Number) {
                return ((Number) o).byteValue();
            } else if (o instanceof String) {
                return toByte((String) o);
            } else if (o instanceof java.util.Date) {
                if (pattern != null) {
    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)
  2. src/main/java/org/codelibs/core/beans/util/CopyOptions.java

                        return false;
                    }
                }
                return true;
            }
            return true;
        }
    
        /**
         * 値がコピーの対象なら{@literal true}を返します。
         *
         * @param value
         *            コピー元の値
         * @return 値がコピーの対象なら{@literal true}
         */
        protected boolean isTargetValue(final Object value) {
            if (value == null) {
    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)
  3. src/main/java/org/codelibs/core/misc/Tuple4.java

                    return false;
                }
            } else if (!value3.equals(other.value3)) {
                return false;
            }
            if (value4 == null) {
                if (other.value4 != null) {
                    return false;
                }
            } else if (!value4.equals(other.value4)) {
                return false;
            }
            return true;
        }
    
    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)
  4. src/main/java/org/codelibs/core/convert/BooleanConversionUtil.java

                if ("true".equalsIgnoreCase(s)) {
                    return Boolean.TRUE;
                } else if ("false".equalsIgnoreCase(s)) {
                    return Boolean.FALSE;
                } else if (s.equals("0")) {
                    return Boolean.FALSE;
                } else {
                    return Boolean.TRUE;
                }
            } else {
                return Boolean.TRUE;
            }
        }
    
        /**
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/xml/SchemaUtil.java

         * @return {@link Schema}
         */
        public static Schema newW3cXmlSchema(final URL schema) {
            assertArgumentNotNull("schema", schema);
            return newSchema(SchemaFactoryUtil.newW3cXmlSchemaFactory(), schema);
        }
    
        /**
         * ファイルからRELAX NGのための{@link Schema}を生成します。
         *
         * @param schema
         *            RELAX NGファイル。{@literal null}であってはいけません
         * @return {@link Schema}
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/beans/MethodDesc.java

         *
         * @return {@link BeanDesc}
         */
        BeanDesc getBeanDesc();
    
        /**
         * メソッドを返します。
         *
         * @return コンストラクタ
         */
        Method getMethod();
    
        /**
         * メソッド名を返します。
         *
         * @return メソッド名
         */
        String getMethodName();
    
        /**
         * メソッドの引数型の配列を返します。
         *
         * @return メソッドの引数型の配列
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 6.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/crypto/CachedCipher.java

            return transformation;
        }
    
        public void setTransformation(final String transformation) {
            this.transformation = transformation;
        }
    
        public String getKey() {
            return key;
        }
    
        public void setKey(final String key) {
            this.key = key;
        }
    
        public String getCharsetName() {
            return charsetName;
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 8.1K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/core/beans/util/BeanUtilTest.java

            /**
             * @return CharSequence
             */
            public static CharSequence aaa() {
                return createCharSequence("aaa");
            }
    
            /**
             * @return CharSequence
             */
            public static CharSequence bbb() {
                return createCharSequence("bbb");
            }
    
            /**
             * @return CharSequence
             */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 34.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/beans/FieldDesc.java

    public interface FieldDesc {
    
        /**
         * このフィールドを所有するクラスの{@link BeanDesc}を返します。
         *
         * @return {@link BeanDesc}
         */
        BeanDesc getBeanDesc();
    
        /**
         * フィールドを返します。
         *
         * @return フィールド
         */
        Field getField();
    
        /**
         * フィールド名を返します。
         *
         * @return フィールド名
         */
        String getFieldName();
    
        /**
         * フィールドの型を返します。
         *
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/exception/ConstructorNotFoundRuntimeException.java

        }
    
        /**
         * ターゲットクラスを返します。
         *
         * @return ターゲットクラス
         */
        public Class<?> getTargetClass() {
            return targetClass;
        }
    
        /**
         * 引数の並びを返します。
         *
         * @return 引数の並び
         */
        public Object[] getMethodArgs() {
            return methodArgs;
        }
    
        /**
         * 引数型の並びを返します。
         *
         * @return 引数型の並び
         */
        public Class<?>[] getParamTypes() {
    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)
Back to top