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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T08:55:32+00:00 2026-05-23T08:55:32+00:00

Sorry for the bad title, I’ve no idea what to call this question. I

  • 0

Sorry for the bad title, I’ve no idea what to call this question.

I have a simple class which basically just wraps an array and provides some custom access metods for it. Essentially all it stores is an array of doublets, each one holding a property type and it’s uid.

My idea is that because this is such a simple usage, I can get away with just building this class and holding it in memory rather than generating a model and suffering the overhead of ActiveRecord (that may not be much, I’m not sure).

I’m worried I’m overthinking and I should just put it in the DB and forget about it?

class PropertyType
  extend Enumerable

  TYPES = [
      ['Site', 'Site'],
      ['New Home', 'NewHome'],
      ['Terraced House', 'Terraced'],
      ['Detached House', 'Detached'],
      ['Bungalow', 'Bungalow'],
      ['Townhouse', 'Townhouse'],
      ['End of Terrace House', 'EoTHouse'],
      ['Semi-Detached House', 'Semi-D'],
      ['New Development', 'NewDev'],
      ['Apartment', 'Apartment'],
      ['Duplex', 'Duplex'],
      ['House For Sale', 'House']
  ].freeze

  def self.each
    TYPES.each{|type| yield(type[0], type[1]) }
  end

  def self.convert_to_name(uid_to_lookup)
    return if uid_to_lookup.blank?
    TYPES.each{|type| return type[0] if type[1] == uid_to_lookup }
  end

  def self.convert_to_uid(name_to_lookup)
    return if name_to_lookup.blank?
    TYPES.each{|type| return type[1] if type[0] == name_to_lookup }
  end

  def self.each_uid
    TYPES.each{|type| yield(type[1]) }
  end

  def self.each_name
    TYPES.each{|type| yield(type[0]) }
  end

  def self.uids
    TYPES.collect{|type| type[1]}
  end

  def self.names
    TYPES.collect{|type| type[0]}
  end
end
  • 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-23T08:55:32+00:00Added an answer on May 23, 2026 at 8:55 am

    I think your class is fine, but personally I’d still put it in the database, just so I have an easy option for building an administrative interface for property types and letting someone else manage modifications to them over time.

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

Sidebar

Related Questions

Sorry for my bad English. Just like what I asked. I have this class
Sorry for the bad title, I wasn't sure what else to call this question.
Sorry for the bad question title. Let's say that I have DateRange class that
Sorry for the bad title, but I have no idea how to put this
Sorry, this is a bad question. I don't even know what the title should
Sorry for bad english and bad title! I have the table post id title
Sorry for the bad title - I simply do not know what to call
At first sorry for my really bad title! If you have a better title
Sorry for the bad title of the question apologies if it's a duplicate. I
Sorry about the vague question title, but I have these typedefs here: typedef std::list<AnimationKeyframe>

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.