org.elasticsearch.common.inject.Key.ensureIsBindingAnnotation()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(4.8k)|赞(0)|评价(0)|浏览(115)

本文整理了Java中org.elasticsearch.common.inject.Key.ensureIsBindingAnnotation()方法的一些代码示例,展示了Key.ensureIsBindingAnnotation()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Key.ensureIsBindingAnnotation()方法的具体详情如下:
包路径:org.elasticsearch.common.inject.Key
类名称:Key
方法名:ensureIsBindingAnnotation

Key.ensureIsBindingAnnotation介绍

暂无

代码示例

代码示例来源:origin: org.elasticsearch/elasticsearch

/**
 * Gets the strategy for an annotation type.
 */
static AnnotationStrategy strategyFor(Class<? extends Annotation> annotationType) {
  Objects.requireNonNull(annotationType, "annotation type");
  ensureRetainedAtRuntime(annotationType);
  ensureIsBindingAnnotation(annotationType);
  return new AnnotationTypeStrategy(annotationType, null);
}

代码示例来源:origin: org.elasticsearch/elasticsearch

/**
 * Gets the strategy for an annotation.
 */
static AnnotationStrategy strategyFor(Annotation annotation) {
  Objects.requireNonNull(annotation, "annotation");
  Class<? extends Annotation> annotationType = annotation.annotationType();
  ensureRetainedAtRuntime(annotationType);
  ensureIsBindingAnnotation(annotationType);
  if (annotationType.getMethods().length == 0) {
    return new AnnotationTypeStrategy(annotationType, annotation);
  }
  return new AnnotationInstanceStrategy(annotation);
}

代码示例来源:origin: com.strapdata.elasticsearch/elasticsearch

/**
 * Gets the strategy for an annotation type.
 */
static AnnotationStrategy strategyFor(Class<? extends Annotation> annotationType) {
  Objects.requireNonNull(annotationType, "annotation type");
  ensureRetainedAtRuntime(annotationType);
  ensureIsBindingAnnotation(annotationType);
  return new AnnotationTypeStrategy(annotationType, null);
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.elasticsearch

/**
 * Gets the strategy for an annotation type.
 */
static AnnotationStrategy strategyFor(Class<? extends Annotation> annotationType) {
  Objects.requireNonNull(annotationType, "annotation type");
  ensureRetainedAtRuntime(annotationType);
  ensureIsBindingAnnotation(annotationType);
  return new AnnotationTypeStrategy(annotationType, null);
}

代码示例来源:origin: apache/servicemix-bundles

/**
 * Gets the strategy for an annotation type.
 */
static AnnotationStrategy strategyFor(Class<? extends Annotation> annotationType) {
  Objects.requireNonNull(annotationType, "annotation type");
  ensureRetainedAtRuntime(annotationType);
  ensureIsBindingAnnotation(annotationType);
  return new AnnotationTypeStrategy(annotationType, null);
}

代码示例来源:origin: com.strapdata.elasticsearch/elasticsearch

/**
 * Gets the strategy for an annotation.
 */
static AnnotationStrategy strategyFor(Annotation annotation) {
  Objects.requireNonNull(annotation, "annotation");
  Class<? extends Annotation> annotationType = annotation.annotationType();
  ensureRetainedAtRuntime(annotationType);
  ensureIsBindingAnnotation(annotationType);
  if (annotationType.getMethods().length == 0) {
    return new AnnotationTypeStrategy(annotationType, annotation);
  }
  return new AnnotationInstanceStrategy(annotation);
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.elasticsearch

/**
 * Gets the strategy for an annotation.
 */
static AnnotationStrategy strategyFor(Annotation annotation) {
  Objects.requireNonNull(annotation, "annotation");
  Class<? extends Annotation> annotationType = annotation.annotationType();
  ensureRetainedAtRuntime(annotationType);
  ensureIsBindingAnnotation(annotationType);
  if (annotationType.getMethods().length == 0) {
    return new AnnotationTypeStrategy(annotationType, annotation);
  }
  return new AnnotationInstanceStrategy(annotation);
}

代码示例来源:origin: apache/servicemix-bundles

/**
 * Gets the strategy for an annotation.
 */
static AnnotationStrategy strategyFor(Annotation annotation) {
  Objects.requireNonNull(annotation, "annotation");
  Class<? extends Annotation> annotationType = annotation.annotationType();
  ensureRetainedAtRuntime(annotationType);
  ensureIsBindingAnnotation(annotationType);
  if (annotationType.getMethods().length == 0) {
    return new AnnotationTypeStrategy(annotationType, annotation);
  }
  return new AnnotationInstanceStrategy(annotation);
}

代码示例来源:origin: harbby/presto-connectors

/**
 * Gets the strategy for an annotation.
 */
static AnnotationStrategy strategyFor(Annotation annotation) {
  checkNotNull(annotation, "annotation");
  Class<? extends Annotation> annotationType = annotation.annotationType();
  ensureRetainedAtRuntime(annotationType);
  ensureIsBindingAnnotation(annotationType);
  if (annotationType.getDeclaredMethods().length == 0) {
    return new AnnotationTypeStrategy(annotationType, annotation);
  }
  return new AnnotationInstanceStrategy(annotation);
}

代码示例来源:origin: harbby/presto-connectors

/**
 * Gets the strategy for an annotation type.
 */
static AnnotationStrategy strategyFor(Class<? extends Annotation> annotationType) {
  checkNotNull(annotationType, "annotation type");
  ensureRetainedAtRuntime(annotationType);
  ensureIsBindingAnnotation(annotationType);
  return new AnnotationTypeStrategy(annotationType, null);
}

相关文章