Tagged Questions
The static-import tag has no wiki summary.
12
votes
4answers
176 views
Java static imports
Just by experiment I discovered that Java non static methods overrides all same named methods in scope even at static context. Even without allowing parameter overloading. Like
import ...
10
votes
9answers
2k views
What is a good use case for static import of methods?
Just got a review comment that my static import of the method was not a good idea. The static import was of a method from a DA class, which has mostly static methods. So in middle of the business ...
6
votes
5answers
154 views
How can I call a Generic method with a type, when its staticly imported?
I found that you can call a generic method with a special Type, e.g.:
suppose we have a generic method:
class ListUtils {
public static <T> List<T> createList() {
return new ...
5
votes
6answers
205 views
Can I do a static import of a private subclass?
I have an enum which is private, not to be exposed outside of the class. Is there anyway I can do a static import of that type, so that I don't have to type the enum type each time? Or is there a ...
4
votes
2answers
52 views
static imports method overlap
if you have a class with a static import to java.lang.Integer and my class also has a static method parseInt(String) then which method will the call parseInt("12345") point to?
Thanks in Advance!
3
votes
6answers
60 views
what do these statements mean and is this style recommended ?
Recently i cam across a statements :
import static java.lang.System.out;
import static java.lang.System.exit;
I read these statements in some tutorial. Are these statements O.K ?
If the statements ...
3
votes
2answers
96 views
Finding import static statements for Mockito constructs
I'm trying to crash through the brick wall between me and Mockito. I've torn my hair out over trying to get correct import static statements for Mockito stuff. You'd think someone would just throw up ...
3
votes
5answers
111 views
Correct use of static imports in java [closed]
Possible Duplicate:
What is a good use case for static import of methods?
I rarely ever see a static import in java like this:
import static java.lang.Math.*;
Then you could access PI ...
3
votes
4answers
98 views
import static does not work when the class has methods with the same name as the imported ones
I have a Junit4 test case which statically imports the org.junit.Assert.assertEquals method(s).
import static org.junit.Assert.assertEquals;
In this class I have created a utility method for ...
2
votes
3answers
72 views
What is the syntax for calling a static typed method while doing a import static?
Currently I am doing
import org.easymock.EasyMock;
...
foo.bar(EasyMock.<List<String>>anyObject());
I wonder if there is a way to avoid mentioning the class EasyMock. I have something ...
2
votes
1answer
69 views
Where does this grid variable come from?
I am looking at the ColumnGridReport example for DynamicReports.
I would like to use the classic code syntax instead of the DSL used in the example, meaning creating
JasperReportBuilder report = ...
2
votes
4answers
300 views
Overloading static imports
In a test class, I’d like to provide my own overload of assertEquals with some special logic not relying on Object.equals. Unfortunately, that doesn’t work because as soon as I declare my assertEquals ...
1
vote
1answer
53 views
How do you get cimport to work in Cython?
I have a directory structure as so:
/my_module
init.py
A/
__init__.py
a.pyx
B/
__init__.py
b.pyx
In b.pyx I want to cimport functions from A.a.
A regular python import works, but a ...
1
vote
2answers
125 views
In Java, is it possible to (statically) import constructors or local variables?
Or can this just be done for methods/fields/enum constants?
0
votes
7answers
83 views
Writing a simple print method for debugging in Java
Before I reinvent the wheel - I want to be able to insert debugging traces in my code, such as say("We are here.");, without defining static void say() in every class. It needs to do ...