Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6039991
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T06:26:59+00:00 2026-05-23T06:26:59+00:00

is there a convenient way to iterate Object’s properties and to check annotations for

  • 0

is there a convenient way to iterate Object’s properties and to check annotations for each?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T06:27:00+00:00Added an answer on May 23, 2026 at 6:27 am

    You can do it this way:

    // First, declare your annotation
    import java.lang.annotation.*
    
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.FIELD)
    public @interface MyAnnot {
    }
    
    // Then, define your class with it's annotated Fields
    class MyClass {
      @MyAnnot String fielda
      String fieldb
      @MyAnnot String fieldc
    }
    
    // Then, we will write a method to take an object and an annotation class
    // And we will return all properties of the object that define that annotation
    def findAllPropertiesForClassWithAnotation( obj, annotClass ) {
      obj.properties.findAll { prop ->
        obj.getClass().declaredFields.find { 
          it.name == prop.key && annotClass in it.declaredAnnotations*.annotationType()
        }
      }
    }
    
    // Then, define an instance of our class
    MyClass a = new MyClass( fielda:'tim', fieldb:'yates', fieldc:'stackoverflow' )
    
    // And print the results of calling our method
    println findAllPropertiesForClassWithAnotation( a, MyAnnot )
    

    In this instance,this prints out:

    [fielda:tim, fieldc:stackoverflow]
    

    Hope it helps!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a convenient way to check if a directory is empty using MSBuild?
Is there a convenient way to calculate percentiles for a sequence or single-dimensional numpy
Is there a convenient way to do this for my extension? I know I
Is there any convenient way to type in braces in Math in Latex? Especially
Is there any convenient way to read and parse data from incoming request. E.g
Is there a convenient way to get mouse deltas (e.g. mickeys) under X/linux? I
Is there a convenient way to have SASS automatically prepend a comment to the
is there any convenient way execute tests on multiple data sets - like in
Is there a convenient way to write a regex that will try to match
Is there any convenient way in C++ to convert a vector to a vector

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.