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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T01:28:49+00:00 2026-05-23T01:28:49+00:00

I have an interface and these methods: public interface Form { public void setFirstName

  • 0

I have an interface and these methods:

public interface Form {

public void setFirstName (String value);

public void setLastName (String value);

public void setGender (String value);
}

Can I call these methods randomly on an objet? Something like:

form.randomMethodFromFormInterface(String randomString);

Is it actually possible? Just to clarify, I would like to fillout the form randomly: sometimes just the last name, sometimes just the first name, sometimes just the gender.

  • 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-23T01:28:50+00:00Added an answer on May 23, 2026 at 1:28 am

    You could do something like below. However, I am not sure if I really like the idea of calling methods in an interface randomly. It breaks the contract in a way and sounds like a bad design idea in my opinion.

    import java.util.Random;
    public class RandomInterfaceImpl implements RandomInterface {
        private Random rnd;
        public RandomInterfaceImpl(){
            rnd = new Random();
        }
        @Override
        public void setFirstName(String value) {
            System.out.println("called setFirstName");
    
        }
    
        @Override
        public void setLastName(String value) {
            System.out.println("called setLastName");
    
        }
    
        @Override
        public void setGender(String value) {
            System.out.println("called setGender");
    
        }
    
        @Override
        public void getNextRandomMethod(String value) {
            int nextRand = rnd.nextInt(3);
            switch(nextRand){
            case 0: setFirstName(value); break;
            case 1: setLastName(value); break;
            case 2: setGender(value); break;
            }
    
        }
    
    }
    
    public static void main(String[] args) {
            RandomInterface myInterface = new RandomInterfaceImpl();
            myInterface.getNextRandomMethod("Foo");
            myInterface.getNextRandomMethod("Foo");
            myInterface.getNextRandomMethod("Foo");
        }
    

    prints:-

    called setFirstName
    called setLastName
    called setLastName
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a interface that defines some methods with attributes. These attributes need to
I have a interface as follows public interface IX { void MethodA(); void MethodB();
I have an interface called ICommand from which various classes inherit. These classes all
I have a class A, and B like these: @interface A : UIViewController <UITableViewDelegate,
Lets say you have interface definition. That interface can be Operation . Then you
What if I have few factory methods returning non-public type and pairing set of
I have the following code: public interface IMyInterface { DataGrid ItemsInGrid { get; set;
I have an interface similar to this: [ServiceContract] public interface IBaseService<T> { [OperationContract] [WebInvoke(Method
I have a marker interface something like this: [AttributeUsage(AttributeTargets.Method, AllowMultiple=false, Inherited=true)] public class MyAttribute
I have a class with 5 methods. 3 of these methods just have to

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.