Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for setProperties (0.23 sec)

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

         * アノテーションの要素を名前と値の{@link Map}として返します。
         *
         * @param annotation
         *            アノテーション。{@literal null}であってはいけません
         * @return アノテーションの要素の名前と値からなる{@link Map}
         */
        public static Map<String, Object> getProperties(final Annotation annotation) {
            assertArgumentNotNull("annotation", annotation);
    
            final Map<String, Object> map = newHashMap();
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.7K bytes
    - Viewed (0)
Back to top