congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
AnnotationValue.asClassArray
Code IndexAdd Tabnine to your IDE (free)

How to use
asClassArray
method
in
org.jboss.jandex.AnnotationValue

Best Java code snippets using org.jboss.jandex.AnnotationValue.asClassArray (Showing top 6 results out of 315)

origin: wildfly/wildfly

  @Override
  protected String[] fromAnnotation(final AnnotationInstance annotationInstance, final PropertyReplacer propertyReplacer) {
    final Type[] classes =  annotationInstance.value().asClassArray();
    final String[] ret = new String[classes.length];
    for(int i = 0; i < classes.length; ++i) {
      ret[i] = classes[i].name().toString();
    }
    return ret;
  }
}
origin: org.jboss.eap/wildfly-ee

  @Override
  protected String[] fromAnnotation(final AnnotationInstance annotationInstance, final PropertyReplacer propertyReplacer) {
    final Type[] classes =  annotationInstance.value().asClassArray();
    final String[] ret = new String[classes.length];
    for(int i = 0; i < classes.length; ++i) {
      ret[i] = classes[i].name().toString();
    }
    return ret;
  }
}
origin: org.jboss.as/jboss-as-ee

  @Override
  protected String[] fromAnnotation(final AnnotationInstance annotationInstance) {
    final Type[] classes =  annotationInstance.value().asClassArray();
    final String[] ret = new String[classes.length];
    for(int i = 0; i < classes.length; ++i) {
      ret[i] = classes[i].name().toString();
    }
    return ret;
  }
}
origin: org.wildfly/wildfly-ee

  @Override
  protected String[] fromAnnotation(final AnnotationInstance annotationInstance, final PropertyReplacer propertyReplacer) {
    final Type[] classes =  annotationInstance.value().asClassArray();
    final String[] ret = new String[classes.length];
    for(int i = 0; i < classes.length; ++i) {
      ret[i] = classes[i].name().toString();
    }
    return ret;
  }
}
origin: org.hibernate/com.springsource.org.hibernate.core

      .getAnnotations( PseudoJpaDotNames.DEFAULT_ENTITY_LISTENERS );
  for ( AnnotationInstance annotation : defaultEntityListenerAnnotations ) {
    for ( Type callbackClass : annotation.value().asClassArray() ) {
      String callbackClassName = callbackClass.name().toString();
      try {
if ( annotationList != null ) {
  for ( AnnotationInstance annotation : annotationList ) {
    for ( Type callbackClass : annotation.value().asClassArray() ) {
      String callbackClassName = callbackClass.name().toString();
      try {
origin: org.hibernate/com.springsource.org.hibernate

      .getAnnotations( PseudoJpaDotNames.DEFAULT_ENTITY_LISTENERS );
  for ( AnnotationInstance annotation : defaultEntityListenerAnnotations ) {
    for ( Type callbackClass : annotation.value().asClassArray() ) {
      String callbackClassName = callbackClass.name().toString();
      try {
if ( annotationList != null ) {
  for ( AnnotationInstance annotation : annotationList ) {
    for ( Type callbackClass : annotation.value().asClassArray() ) {
      String callbackClassName = callbackClass.name().toString();
      try {
org.jboss.jandexAnnotationValueasClassArray

Javadoc

Returns an array of class types representing the underlying class array value. Each element has the same behavior as @{link #asClass()

Popular methods of AnnotationValue

  • asString
  • asBoolean
  • asNestedArray
  • asStringArray
  • asClass
  • asInt
  • value
  • asEnum
  • asLong
  • asEnumArray
  • asNested
  • toString
  • asNested,
  • toString,
  • createArrayValue,
  • createBooleanValue,
  • createClassValue,
  • createEnumValue,
  • createIntegerValue,
  • createNestedAnnotationValue,
  • createStringValue

Popular in Java

  • Finding current android device location
  • onCreateOptionsMenu (Activity)
  • notifyDataSetChanged (ArrayAdapter)
  • compareTo (BigDecimal)
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • IOException (java.io)
    Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • BlockingQueue (java.util.concurrent)
    A java.util.Queue that additionally supports operations that wait for the queue to become non-empty
  • JList (javax.swing)
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • Top plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now