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

  • Home
  • SEARCH
  • 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 7819915
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T07:06:37+00:00 2026-06-02T07:06:37+00:00

I want to design a simple user preference object and its hierarchy. It should

  • 0

I want to design a simple user preference object and its hierarchy. It should be something like

preference
   String Name
   Object Value

booleanPreference
   String Name
   Boolean Value

….

It goes on like that. The preference type changes from class to class. How would I go about implementing such a simple design “abstract class/interface/”?

  • 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-06-02T07:06:40+00:00Added an answer on June 2, 2026 at 7:06 am

    Start with an interface:

    public interface Preference<T>  {
        String getName();
        T getValue();
    }
    

    Implementation might look like this (not sure about generic; didn’t compile to check):

    public class PreferenceImpl implements Preference<T> {
        private final String name;
        private final T value;
    
        public PreferenceImpl(String name, T value) {
            this.name = name;
            this.value = value;
        }
    
        public String getName() { return this.name; }
        public T getValue() { return this.value; }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to design a webform that user should fill some fields. The value
I want to design simple app widget which has two textview and two button
We want to design a simple domain specific language for writing test scripts to
I just want to design this very simple website. Basically there are multiple pages
I want to design a chat view like BlackBerry messenger (unfortunately new users are
I want to do something really simple, I just can't seem to find the
I want design my startup screen with progress bar. But I don't how to
I want to design a c# program which can run program a 3rd exe
I want to design a login and register layout using android tabs. Image is
I want to design a music player with ListBox has 2 rows to show

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.