當前位置: 首頁>>代碼示例>>Java>>正文


Java AnnotationAttributes.entrySet方法代碼示例

本文整理匯總了Java中org.springframework.core.annotation.AnnotationAttributes.entrySet方法的典型用法代碼示例。如果您正苦於以下問題:Java AnnotationAttributes.entrySet方法的具體用法?Java AnnotationAttributes.entrySet怎麽用?Java AnnotationAttributes.entrySet使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.springframework.core.annotation.AnnotationAttributes的用法示例。


在下文中一共展示了AnnotationAttributes.entrySet方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: convertClassValues

import org.springframework.core.annotation.AnnotationAttributes; //導入方法依賴的package包/類
public static AnnotationAttributes convertClassValues(ClassLoader classLoader, AnnotationAttributes original,
		boolean classValuesAsString) {

	if (original == null) {
		return null;
	}

	AnnotationAttributes result = new AnnotationAttributes(original.size());
	for (Map.Entry<String, Object> entry : original.entrySet()) {
		try {
			Object value = entry.getValue();
			if (value instanceof AnnotationAttributes) {
				value = convertClassValues(classLoader, (AnnotationAttributes) value, classValuesAsString);
			}
			else if (value instanceof AnnotationAttributes[]) {
				AnnotationAttributes[] values = (AnnotationAttributes[]) value;
				for (int i = 0; i < values.length; i++) {
					values[i] = convertClassValues(classLoader, values[i], classValuesAsString);
				}
			}
			else if (value instanceof Type) {
				value = (classValuesAsString ? ((Type) value).getClassName() :
						classLoader.loadClass(((Type) value).getClassName()));
			}
			else if (value instanceof Type[]) {
				Type[] array = (Type[]) value;
				Object[] convArray = (classValuesAsString ? new String[array.length] : new Class<?>[array.length]);
				for (int i = 0; i < array.length; i++) {
					convArray[i] = (classValuesAsString ? array[i].getClassName() :
							classLoader.loadClass(array[i].getClassName()));
				}
				value = convArray;
			}
			else if (classValuesAsString) {
				if (value instanceof Class) {
					value = ((Class<?>) value).getName();
				}
				else if (value instanceof Class[]) {
					Class<?>[] clazzArray = (Class[]) value;
					String[] newValue = new String[clazzArray.length];
					for (int i = 0; i < clazzArray.length; i++) {
						newValue[i] = clazzArray[i].getName();
					}
					value = newValue;
				}
			}
			result.put(entry.getKey(), value);
		}
		catch (Exception ex) {
			// Class not found - can't resolve class reference in annotation attribute.
			result.put(entry.getKey(), ex);
		}
	}
	return result;
}
 
開發者ID:langtianya,項目名稱:spring4-understanding,代碼行數:56,代碼來源:AnnotationReadingVisitorUtils.java


注:本文中的org.springframework.core.annotation.AnnotationAttributes.entrySet方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。