vote up 4 vote down star
3

I've been reading through the details of the System libraries set and get methods yet the parameters are usually Strings.

Would you consider the use of String as parameters bad practise since the inclusion of enum?

A better alternative at minimum might be public final String, No?

flag

6 Answers

vote up 11 vote down check

I would consider Enums to be a better approach than Strings. They are type safe and comparing them is faster than comparing Strings.

As a pre Java 1.5 alternative you could use the type-safe enum pattern suggested by Joshua Bloch in his book Effective Java. For type-safe enums see also http://www.javacamp.org/designPattern/enum.html

link|flag
vote up 6 vote down

If your set of parameters is limited and known at compile time, use enum.

If your set of parameters is open and unkown at compile time, use strings.

link|flag
vote up 5 vote down

Just because you declare a public final String as something you expect to have passed into a method as a parameter, there's nothing stopping me from passing in anything I like.

Using enums means that I can't create my own object to pass in, protecting both sides of the issue. The only time I can think you should be using constant Strings in lieu of enums is if you need to allow room for the user to extend your method to enable custom functionality...

link|flag
@Martin: I wss thinking of comparing the inputs to the String const otherwise throwing an invalid input exception, not nice. I asked the question because of the suggestion of open keys, this seems to reduce the WORA concept within Java. – _ande_turner_ Nov 15 '08 at 5:38
vote up 4 vote down

If you're referring to System.setProperty(), System.getProperty(), or System.getenv(), I think Strings are appropriate here since the set of possible keys is open. The key parameter corresponds to an actual text/string type value in some file or store somewhere.

If you have a closed set of keys, I think enums would be much preferred.

link|flag
My thought on this was that an enum can have mapping details for non platform specific settings, that both should be used not just strings, and that string methods should be deprecated to encourage the adoption of enums – _ande_turner_ Nov 10 '08 at 9:17
I think the distinction between "closed" keysets and "open" keysets is the most important factor here. If you look at an API with dynamically loaded plugins, the plugins may contribute additional functionality which can be accessed via a String parameter, but would be more difficult with an enum. – James Van Huis Nov 10 '08 at 16:18
vote up 2 vote down

I've learned the "method of least surprise". Instinctively, using enum is the right thing. So i would go for it. I'm sure the Java makers think alike.

Edit: Excellent explanation of POLS: http://benpryor.com/blog/2006/06/29/api-design-the-principle-of-least-surprise/

link|flag
vote up 1 vote down

Usage of strings in existing APIs is not bad practice; it is bad practice to change the APIs just because Java has now support for enums. For new APIs, I agree with what everybody else said.

link|flag
Overloading? Copy of my comment to lycono: "My thought on this was that an enum can have mapping details for non platform specific settings, that both should be used not just strings, and that string methods should be deprecated to encourage the adoption of enums" – _ande_turner_ Nov 10 '08 at 9:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.