0
votes
How do you define a class of constants in Java?
My suggestions (in decreasing order of preference):
1) Don't do it. Create the constants in the actual class where they are most relevant. Having a 'bag of constants' cla …
2
votes
Find if an SQLException was thrown because of a duplicate
With basic JDBC, there really isn't a way to do what you are saying in a cross-database manner. As you mentioned getErrorCode could be used, but required vendor-specific error codes.
…
4
votes
Java reflection
Two issues you may be having issues with - the field might not be accessible normally (private), and its not in the class you are looking at, but somewhere up the hierarchy.
Something like …
0
votes
Does the super class not call the overridden method?
You may be confused if you are coming from C# or some other language where you have to explicitly declare virtual functions and/or overriding functions.
In Java, all instance functions are …
3
votes
Java annotations
Every object should has toString() defined. (And you can override this for each class to get a more meaningful representation).
So you where your "// here I don't know" comment is, you cou …
1
vote
Do containsAll() and retainAll() in the Collection interface address cardinality?
The javadocs for containsAll (in Collection) say:
Returns: true if this collection
contains all of the elements in the
specified collection
and for …
11
votes
How can I use credit card numbers containing spaces?
Websites that force you to enter credit card numbers (and similar things) in a specific format - seriously annoy me.
Those people are inconveniencing their customers simply because they (th …
0
votes
Array/list questions
Instead of using arrays, I would use ArrayList (or more generally Collection) and then filter based on a predicate. see …
0
votes
Is it possible to put java 1.4 on 64 bit Ubuntu?
SAP is paying extra to get just such a setup supported, so I assume that there is no tec …
