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 5845539
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T12:26:57+00:00 2026-05-22T12:26:57+00:00

I have a constants class full of a bunch of final static strings. I

  • 0

I have a constants class full of a bunch of final static strings. I need a way to get access to all these constants in this class in a nice array type form without manually created an array with each constant.

Is there any type of method on a class that could give me back an iterative data-structure that I could loop through in another class?

Thanks!

  • 1 1 Answer
  • 1 View
  • 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-22T12:26:58+00:00Added an answer on May 22, 2026 at 12:26 pm

    You can use reflection to get the declared fields:

    import java.lang.reflect.Field;
    import java.lang.reflect.Modifier;
    
    public class field1 {
        private double d;
        public static final int i = 37;
        String s = "testing";
    
        public static void main(String args[]) {
            field1 f = new field1();
    
            try {
                Class cls = Class.forName("field1");
    
                Field fieldlist[] = cls.getDeclaredFields();
                for (Field field : fieldlist) {
                    System.out.println("name = " + field.getName());
                    System.out.println("decl class = " + field.getDeclaringClass());
                    System.out.println("type = " + field.getType());
    
                    int mod = field.getModifiers();
                    System.out.println("modifiers = " + Modifier.toString(mod));
                    System.out.println("value = " + field.get(f));
                    System.out.println("-----");
                }
            } catch (Throwable e) {
                System.err.println(e);
            }
        }
    }
    

    This sample is from here

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

Sidebar

Related Questions

I have the following construction: public static class Constants { public static class Foo
I have a Class named Constants that contains all the constant variable in my
I have a base class A with a constant static variable a. I need
I have a C++ class implementation file which has some constants. The constants appear
I have a Model which has some constants defined, like below: class Order(models.Model): WAITING
I have a class which is essentially just holds a bunch of constant definitions
I have a model that looks like this: class Pdf extends \lithium\data\Model { protected
I have created a class that authorises a vb.net app to access Google Fusion
I have a class called XMLtoXML.java and this is one of it's methods... import
I have a Rails app that contains a TeamSeason model class. This class has

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.