当前位置: 首页>>代码示例>>Java>>正文


Java Repeatable类代码示例

本文整理汇总了Java中java.lang.annotation.Repeatable的典型用法代码示例。如果您正苦于以下问题:Java Repeatable类的具体用法?Java Repeatable怎么用?Java Repeatable使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


Repeatable类属于java.lang.annotation包,在下文中一共展示了Repeatable类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getLabels

import java.lang.annotation.Repeatable; //导入依赖的package包/类
private <T extends Annotation> Stream<Label> getLabels(final Description result, final Class<T> labelAnnotation,
                                                       final Function<T, Label> extractor) {

    final List<Label> labels = getAnnotationsOnMethod(result, labelAnnotation).stream()
            .map(extractor)
            .collect(Collectors.toList());

    if (labelAnnotation.isAnnotationPresent(Repeatable.class) || labels.isEmpty()) {
        final Stream<Label> onClassLabels = getAnnotationsOnClass(result, labelAnnotation).stream()
                .map(extractor);
        labels.addAll(onClassLabels.collect(Collectors.toList()));
    }

    return labels.stream();
}
 
开发者ID:allure-framework,项目名称:allure-java,代码行数:16,代码来源:AllureJunit4.java

示例2: getAnnotations

import java.lang.annotation.Repeatable; //导入依赖的package包/类
/**
 * Get all the annotations of given <code>annotationType</code> present in given <code>element</code>, including any
 * meta-annotation and supporting repeatable annotations.
 * @param <A> Annotation type
 * @param element Annotated element to inspect (not null)
 * @param annotationType Annotation type to lookup
 * @return List of detected annotation of given <code>annotationType</code>, an empty List if none found
 */
public static <A extends Annotation> List<A> getAnnotations(AnnotatedElement element, Class<A> annotationType) {
	ObjectUtils.argumentNotNull(element, "AnnotatedElement must be not null");
	ObjectUtils.argumentNotNull(annotationType, "Annotation type must be not null");

	Class<? extends Annotation> repeatableContainerType = null;
	if (annotationType.isAnnotationPresent(Repeatable.class)) {
		repeatableContainerType = annotationType.getAnnotation(Repeatable.class).value();
	}

	List<A> annotations = new LinkedList<>();
	findAnnotations(annotations, element, annotationType, repeatableContainerType);
	return annotations;
}
 
开发者ID:holon-platform,项目名称:holon-core,代码行数:22,代码来源:AnnotationUtils.java

示例3: getAnnotationsByType

import java.lang.annotation.Repeatable; //导入依赖的package包/类
/**
 * Return the annotations present by type. Repeated annotations are taken
 * into account
 */
public static List<AnnotationNode> getAnnotationsByType(List<AnnotationNode> annotations,
        Class<? extends Annotation> annotation) {
    Repeatable repeatable = annotation.getAnnotation(Repeatable.class);
    return getAnnotationsByType(annotations, Type.getInternalName(annotation),
            repeatable != null ? Type.getInternalName(repeatable.value()) : null);
}
 
开发者ID:ruediste,项目名称:rise,代码行数:11,代码来源:AsmUtil.java

示例4: isRepeated

import java.lang.annotation.Repeatable; //导入依赖的package包/类
/**
 * 繰り返されたアノテーションかどうか判定する。
 * <p>属性「value」に、繰り返しのアノテーション{@link Repeatable}が付与されている
 *    アノテーションの配列を保持しているかどうかで判定する。</p>
 * @param targetAnno
 * @return
 */
private boolean isRepeated(final Annotation targetAnno) {
    
    try {
        final Method method = targetAnno.getClass().getMethod("value");
        
        // 値のクラスタイプがアノテーションの配列かどうかのチェック
        final Class<?> returnType = method.getReturnType();
        if(!(returnType.isArray() && Annotation.class.isAssignableFrom(returnType.getComponentType()))) {
            return false;
        }
        
        final Annotation[] annos = (Annotation[]) method.invoke(targetAnno);
        if(annos.length == 0) {
            return false;
        }
        
        // @Repetableアノテーションが付与されているかどうか
        if(annos[0].annotationType().getAnnotation(Repeatable.class) != null) {
            return true;
        }
        
    } catch (Exception e) {
        
    }
    
    return false;
    
}
 
开发者ID:mygreen,项目名称:super-csv-annotation,代码行数:36,代码来源:AnnotationExpander.java

示例5: getContainer

import java.lang.annotation.Repeatable; //导入依赖的package包/类
private static Class<? extends Annotation> getContainer(Class<? extends Annotation> annoType) {
    Repeatable repeatable = annoType.getAnnotation(Repeatable.class);
    return (repeatable == null) ? null : repeatable.value();
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:5,代码来源:AnnoConstruct.java

示例6: findRepeatableAnnotationOnComposedAnnotation

import java.lang.annotation.Repeatable; //导入依赖的package包/类
@Test
public void findRepeatableAnnotationOnComposedAnnotation() {
	Repeatable repeatable = findAnnotation(MyRepeatableMeta1.class, Repeatable.class);
	assertNotNull(repeatable);
	assertEquals(MyRepeatableContainer.class, repeatable.value());
}
 
开发者ID:langtianya,项目名称:spring4-understanding,代码行数:7,代码来源:AnnotationUtilsTests.java

示例7: isRepeatableAnnotation

import java.lang.annotation.Repeatable; //导入依赖的package包/类
private boolean isRepeatableAnnotation() {
    return annotationClass.isAnnotationPresent(Repeatable.class);
}
 
开发者ID:dataz,项目名称:dataz-core,代码行数:4,代码来源:AnnotationTraverserBuilder.java


注:本文中的java.lang.annotation.Repeatable类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。