Tagged Questions
The utility-method tag has no wiki summary.
11
votes
3answers
536 views
If a “Utilities” class is evil, where do I put my generic code?
I generally live by the rule that Global variables / functions are evil and that every piece of code should live in the class to which it pertains.
This is a very easy rule to follow, and I believe ...
7
votes
9answers
473 views
Utility method - Pass a File or String?
Here's an example of a utility method:
public static Long getFileSize(String fileString) {
File file = new File(fileString);
if (file == null || !file.isFile())
return null;
...
4
votes
2answers
131 views
Is there a java utility method for creating a list with specified size and contents?
public static <T> List<T> repeat(T contents, int length) {
List<T> list = new ArrayList<T>();
for (int i = 0; i < length; i++) {
list.add(contents);
}
...
3
votes
4answers
120 views
Java Anonymous Class as Utility Functions ? To design Arguments that are actually used, or one Argument (the bigger obj)
The Situation is that I have to use Function pointers for so many functions in Java (so I did it this way) and saved each anonymous class to a static variable of the Interface, so that I could use ...
3
votes
2answers
383 views
Best practices for JQuery namespaces + general purpose utility functions
What are some current "rules of thumb" for implementing JQuery namespaces to host general purpose utility functions?
I have a number of JavaScript utility methods scattered in various files that I'd ...
2
votes
1answer
82 views
Criteria for putting functionality in an API or letting developers make it themselves [closed]
I'm defining an abstract base class as a part of an API that will be used by other developers, kind of like defining the Android API and letting developers use it to make phone apps. When should the ...
2
votes
2answers
44 views
Need something like getTotal(ClassName, ListOfObjectsOfClass, numericFieldOfClass)
I have class say for example public class Item {
int price;
String name;
// getters and setters
}
I have such 1000 or more objects (just example).
For each item there is a different ...
2
votes
1answer
51 views
Where to put utility methods in Ruby superclass
I'm writing a Ruby object that will be used as the superclass of arbitrary classes that inherit from it. The class has a couple well-defined methods, along with many small utility methods, to factor ...
2
votes
2answers
195 views
guava-libraries: List with n instances
The Java Collections class has the following method:
static <T> List<T> nCopies(int n, T o)
I need a similar method, but slightly more generic, which provides n instances of a given ...
1
vote
3answers
534 views
Utility class or Common class in asp.net
Do anyone knows about the class which has the common function which we generally use while developing web application. I have no idea what you may call it, it may be the utility class or common ...
1
vote
3answers
186 views
Is there a utility method to separate a list by given string?
Is there something like the following in Apache Common Lang or Spring Utils or do you write your own Util method for this?
List<String> list = new ArrayList<String>();
list.add("moo");
...
0
votes
3answers
91 views
Is there an existing Java utility method that can join a list of Strings on “,” and “and”?
I'm looking for something to augment the function of the apache commons join() function, basically that will do what makePrettyList() does
public String makePrettyList(List<String> items) {
...
0
votes
1answer
586 views
Util class for accesing a Service in Spring 3
In Spring 3 it is not possible to set @Autowired in either static fields or methods, so since I want to declare an utility class such as:
public class SchoolYearServiceUtil {
private static ...
0
votes
7answers
337 views
call a function in utility class
I have a function in a utility class
namespace GUI.code
{
public class Utility
{
public string GetFileName(string grpID)
{
string filenameUNC = "\\\\" + "localhost" + ...