java Programming Glossary: alternatives
Initialization of an ArrayList in one line http://stackoverflow.com/questions/1005073/initialization-of-an-arraylist-in-one-line typing required to refer to that list instance. There are alternatives such as making an anonymous inner class with an instance initializer..
Choosing Java vs Python on Google App Engine http://stackoverflow.com/questions/1085898/choosing-java-vs-python-on-google-app-engine coding is far richer and more advanced than Python side alternatives in practice if you choose Python you'll be writing some JS yourself..
Can I add JRadioButton into JTable http://stackoverflow.com/questions/11154378/can-i-add-jradiobutton-into-jtable you want to use JRadioButton in a JTable consider these alternatives Use SINGLE_SELECTION mode to select individual rows. table.setSelectionMode..
How to add JRadioButton to group in JTable http://stackoverflow.com/questions/11176480/how-to-add-jradiobutton-to-group-in-jtable is an example shown below. See also these other alternatives . Figure from @mKorbel's StatusRenderer and StatusEditor Mac..
What is the best method to capture images from a live video device for use by a Java-based application? http://stackoverflow.com/questions/115835/what-is-the-best-method-to-capture-images-from-a-live-video-device-for-use-by-a in software or on the PC directly. However if someone has alternatives I'd love to hear them. java video image processing video capture..
MathML and Java http://stackoverflow.com/questions/1784786/mathml-and-java at startup for rendering MathML on a mobile phone Other alternatives for rendering math expressions with TeX JMathTex SnuggleTeX..
PreparedStatement IN clause alternatives? http://stackoverflow.com/questions/178479/preparedstatement-in-clause-alternatives IN clause alternatives What are the best workarounds for using a SQL IN clause with..
Why should I use the Oracle JDK over the OpenJDK, or vice-versa? [closed] http://stackoverflow.com/questions/1977238/why-should-i-use-the-oracle-jdk-over-the-openjdk-or-vice-versa . To get a list of the installed JDK sudo update java alternatives l To set a new as default one at the system level sudo update.. a new as default one at the system level sudo update java alternatives s jname I have both of them installed to do some testing from..
What is the point of the class Option[T]? http://stackoverflow.com/questions/2079170/what-is-the-point-of-the-class-optiont How would you call display without using get Here are some alternatives getPerson2 foreach _.display for person getPerson2 person.display.. Person Unknown 0 .display None of this alternatives will let you call display on something that does not exist...
Choosing a Java Web Framework now? [closed] http://stackoverflow.com/questions/2084169/choosing-a-java-web-framework-now Future Flex GWT Rails and Grails just to get a taste of alternatives Comparing Kick Ass Web Frameworks this one is the most recent..
Why JSF calls getters multiple times http://stackoverflow.com/questions/2090033/why-jsf-calls-getters-multiple-times private variables that you might not need. What are the alternatives to this approach Is there a way to achieve this without so much..
Javax.swing timer repeats fine, but ActionListener doesn't do anything http://stackoverflow.com/questions/2123841/javax-swing-timer-repeats-fine-but-actionlistener-doesnt-do-anything repeatedly step through flash and toggle between the two alternatives. But onscreen only the first toggle occurs. After that no action..
What's wrong with overridable method calls in constructors? http://stackoverflow.com/questions/3404301/whats-wrong-with-overridable-method-calls-in-constructors many parameters can lead to poor readability and better alternatives exist. Here's a quote from Effective Java 2nd Edition Item 2..
How to deal with “java.lang.OutOfMemoryError: Java heap space” error (64MB heap size) http://stackoverflow.com/questions/37335/how-to-deal-with-java-lang-outofmemoryerror-java-heap-space-error-64mb-heap If you could point me to details of above ideas or some alternatives like automatic virtual memory extending heap size dynamically..
Regex Named Groups in Java http://stackoverflow.com/questions/415580/regex-named-groups-in-java captured input subsequence by the given named group Other alternatives for pre Java7 were Google named regex see John Hardy 's answer..
Connection pooling options with JDBC: DBCP vs C3P0 [closed] http://stackoverflow.com/questions/520585/connection-pooling-options-with-jdbc-dbcp-vs-c3p0 but could not reach a decision. Are there any relevant alternatives to these two java jdbc connection pooling c3p0 apache commons..
What are good InstallAnywhere replacements for installing a Java EE application? http://stackoverflow.com/questions/759855/what-are-good-installanywhere-replacements-for-installing-a-java-ee-application the options were good in many things and both seemed good alternatives to InstallAnywhere They produce completely native and pretty..
Convert from byte array to hex string in java http://stackoverflow.com/questions/9655181/convert-from-byte-array-to-hex-string-in-java time for long arrays. Edit When I say it's faster than the alternatives I mean the alternative code offered in the discussions. Performance..
Accessing a JTextField in JTableHeader http://stackoverflow.com/questions/12598180/accessing-a-jtextfield-in-jtableheader for setHeaderEditor which would be required for editing. Alternatives might include these Write a custom JTableHeader . Add a row..
Is it bad practice to make a setter return “this”? http://stackoverflow.com/questions/1345001/is-it-bad-practice-to-make-a-setter-return-this different combinations for which fields you want to set. Alternatives to this method might be One mega constructor downside you might..
Alternatives to Java Mail API http://stackoverflow.com/questions/2093924/alternatives-to-java-mail-api to Java Mail API I am trying to send an email with attachments..
Generic type parameter naming convention for Java (with multiple chars)? http://stackoverflow.com/questions/2900881/generic-type-parameter-naming-convention-for-java-with-multiple-chars like a convention from sun or a general best practice. Alternatives i guesed of or found... Map KEY VALUE Map TKey TValue java..
Alternatives to System.exit(1) http://stackoverflow.com/questions/32790/alternatives-to-system-exit1 to System.exit 1 For various reasons calling System.exit is..
Alternatives to java.lang.reflect.Proxy for creating proxies of abstract classes (rather than interfaces) http://stackoverflow.com/questions/3291637/alternatives-to-java-lang-reflect-proxy-for-creating-proxies-of-abstract-classes to java.lang.reflect.Proxy for creating proxies of abstract..
Any good ORM tools for Android development? [closed] http://stackoverflow.com/questions/371538/any-good-orm-tools-for-android-development
Is it possible in java make something like Comparator but for implementing custom equals() and hashCode() http://stackoverflow.com/questions/5204082/is-it-possible-in-java-make-something-like-comparator-but-for-implementing-custo methods. That's the way they are designed to work ... Alternatives Implement a wrapper class that holds an instance of the real..
Integrating JavaFX 2.0 WebView into a Swing Java SE 6 Application http://stackoverflow.com/questions/8374365/integrating-javafx-2-0-webview-into-a-swing-java-se-6-application on Mac OS X 10.6 JavaFX 2.0 is still in beta for OS X. Alternatives I found include MozSwing which looked very promising and feels..
|