frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open in hackernews

Ask HN: Java why put string in a constant?

1•ramsicandra•10mo ago
I'm relatively new to Java. I often notice a pattern where there is a list of constant which value are equal to the name.

  class Constant {
    public static final String ALBUM = "album";
    public static final String NAME = "_name";
    public static final String DISPLAY_NAME = "display-name";
    public static final String SERVICE_NAME_METRIC_NAME_PREFIX = "service_name.metric_name";
  }

Here is a public example of this practice I could find: https://developer.android.com/reference/android/provider/MediaStore.MediaColumns

I could understand that this might help in 2 ways refactoring and typo. This reduces chance of typo because you'll get compile error instead of run-time error if you typo a constant. This might also help in refactoring if you ever wants to change the value. but if may use this android public API example, I don't think it's wise to change a field name ever. If it's decommissioned, it's good to keep it so we don't re-use the field. If it's a new better field available, I think it should have a different name. I maybe making a straw man argument here. Let me know. If it's an internal API where such refactoring might make sense -- I still kind of think internal API should also be backward compatible, replacing a string are not a complicated operation in my opinion.

I see that this practice has a cost. One being that in every class that use this API. You need to add an import. It's also often the const is only used once from my experience.

  import static com.example.MediaFields.NAME;
  import static com.example.MediaFields.DISPLAY_NAME;

  String value = json.getString(NAME);
  String value2 = json.getString(DISPLAY_NAME);
vs

  String value = json.getString("name");
  String value2 = json.getString("display_name");
You write 1 line for declaration plus 2 lines for each class using this API. This is not a big deal in terms of LoC and I'm not an LoC police. However, my sense is the cost outweigh the benefit.

What do you think?

Comments

lanna•10mo ago
You just made TWO typos: "display-name" vs "display_name" and "_name" vs "name", automatically counter-argumenting your point.

It is also for documentation. With the declared constants, we know all possible values. With plain strings, how am I supposed to know which values to use?

The benefits far outweigh the marginal cost.

ramsicandra•10mo ago
The -, _, and leading _ are just variations of white space / separator I have encountered. I think it's possible to document all the allowable values in the Javadoc section of the function that takes in string as their argument.

In the specific android example, I would put it here. Under projection params where it takes in all the Images.Media.* string consts.

https://developer.android.com/reference/android/content/Cont...

Though, if it's a practice of Java Engineer to document allowable enum like string as a constant, then I can say that's a valid argument.

The Cost of Closing the Strait of Hormuz

https://www.kielinstitut.de/publications/the-cost-of-closing-the-strait-of-hormuz-energy-bottlene...
1•salkahfi•5m ago•0 comments

Show HN: GolfStudent v2 - 24M-param LLM in 15MB using GPTQ-lite + Muon

https://github.com/openai/parameter-golf/pull/604
1•whitestone1121•8m ago•0 comments

VitruvianOS – Desktop Linux Inspired by the BeOS

https://v-os.dev
1•felixding•8m ago•0 comments

How China Made Itself Tariff-Proof

https://www.nytimes.com/2026/03/24/podcasts/the-daily/china-tariff-robot-export.html
2•mizzao•14m ago•1 comments

My Prodigal Brainchild

https://nealstephenson.substack.com/p/my-prodigal-brainchild
1•nickthegreek•14m ago•0 comments

Show HN: AISH, a shell with natural-language ops workflows

https://github.com/AI-Shell-Team/aish
1•GeekUses9527•18m ago•0 comments

AegisFlow – Open-source AI gateway with policy engine, built in Go

https://github.com/saivedant169/AegisFlow
1•saivedant1011•21m ago•0 comments

6 Active AI Training Projects on Alignerr Right Now [March 2026]

https://aitrainer.work/guides/alignerr-active-projects-march-2026
2•celadondev•25m ago•0 comments

From Zip to Nought: The Rise and Fall of Iomega

https://hackaday.com/2026/03/24/from-zip-to-nought-the-rise-and-fall-of-iomega/
1•lxm•28m ago•0 comments

Ask HN: What shell/terminal setup would you recommend to beginners today?

1•GeekUses9527•29m ago•0 comments

My Stay at the Biltmore Mayfair

https://substack.com/profile/484399211-lolipop/note/c-232884584
1•Btmviolet123•31m ago•0 comments

Url to Video – Transform Product URLs into High-Converting AI Video Ads

https://urltovideo.ai
2•Lisheng•34m ago•0 comments

Primary School Children Face Having to Work Until They Are 75

https://www.thetimes.com/money/pensions/article/primary-school-children-work-until-75-retirement-...
4•karakoram•36m ago•2 comments

Fantastic Anime Edit

https://www.youtube.com/watch?v=mEyrsy6PWgo
1•nivethan•38m ago•0 comments

Show HN: I built a team of AI executives to build my startup – I fired one

https://www.agentmadness.ai/entries/mise-inc
1•jonflaig13•43m ago•0 comments

Why Microsoft and OpenAI are at odds

https://finshots.in/archive/why-microsoft-and-openai-are-at-odds/
1•vismit2000•45m ago•0 comments

Nginx ingress controller has been archived

https://github.com/kubernetes/ingress-NGINX
1•Doublon•47m ago•0 comments

New Mexico just handed Meta its first courtroom defeat over child safety

https://techcrunch.com/2026/03/24/new-mexico-just-handed-meta-its-first-courtroom-defeat-over-chi...
1•pseudolus•48m ago•1 comments

Why Speech Has Never Become Context

https://zhenthinks.substack.com/p/why-speech-has-never-become-context
1•zhenthinks•51m ago•0 comments

The Ocean of Numbers: How India Shaped the Way We Calculate [video]

https://www.youtube.com/watch?v=sa2kN-li984
1•vismit2000•51m ago•0 comments

Data Transformation in the Browser

https://www.smartquerytools.com/
1•dango2506•52m ago•0 comments

StationeryObject

https://stationeryobject.com/archive/
1•NaOH•52m ago•0 comments

Levine Links: Money Stuff but enhanced with O paywalls

https://levine.yet-to-be.com/
1•wyxuan•53m ago•1 comments

LiteLLM got supply-chain attacked: 97M downloads/month, credential stealer

https://hexaclaw.com/blog/litellm-supply-chain-attack
1•hexaclawdevs•55m ago•1 comments

OpenAI killed Sora. Here are 11 video APIs that still work, with pricing

https://hexaclaw.com/blog/sora-is-dead-video-alternatives
1•hexaclawdevs•57m ago•1 comments

DOSS $55M Series B

https://www.doss.com/news/doss-raises-55m-series-b
1•doppp•1h ago•0 comments

So far AI has mostly proven the inherent worth of menial laborers

https://www.theverge.com/ai-artificial-intelligence/899086/jensen-huang-nvidia-agi
4•wrqvrwvq•1h ago•2 comments

Pidgin HTML Markup for Writing, or How Much Can HTML Sustain?

https://aartaka.me/pidgin.html
1•pabs3•1h ago•0 comments

Singapore's Sound Card Hero [video]

https://www.youtube.com/watch?v=VTPa6wRECw0
1•arbayi•1h ago•0 comments

Show HN: JaaS platform: AI panhandler charges $1 minimum per joke

https://doyouhaveadollar.com
1•flarite•1h ago•0 comments