0
votes
2answers
46 views
Java bounded wilcard type
Hi,
I need to define a generic class, and the type parameter must be an enum. I think it should look something like
public class <T> MyClass<T extends Enum<T>> …
7
votes
2answers
71 views
Question on Java Generics Bounded Wildcard
Is there a difference between
1) <N extends Number> Collection<N> getThatCollection(Class<N> type)
and
2) Collection<? extends Number> getThatCollection( …
1
vote
2answers
206 views
How to configure *.subdomain.domain.tld in Windows 2003 - wildcards in DNS
I think the title says it all really, but to reiterate, I'd like to know how to configure Windows 2003 to allow a wildcard on a subdomain. So site1.sub.domain.tld and site2.sub.do …
1
vote
2answers
762 views
Getting wildcards to work in find and replace function in VBA macro for Microsoft Word
Hello all!
Thanks in advance for your help!
I have a VBA macro for Microsoft Word that I am trying to improve.
The purpose of the macro is to bold and italicize all words in …
1
vote
5answers
87 views
Consecutive wild characters in email
I was looking at email validation. I read in RFC specs that consecutive . (dot) are not allowed, like, mail..me@server.com.
But are different wild characters allowed to occur cons …
0
votes
6answers
204 views
SQL Select help - removing white space
Hello all,
I'm running into a problem when trying to select records from my 2005 MS-SQL database (I'm still very new to SQL, but I learned and use the basic commands from w3school …
4
votes
1answer
120 views
Inferred wildcard generics in return type
Java can often infer generics based on the arguments (and even on the return type, in contrast to e.g. C#).
Case in point: I've got a generic class Pair<T1, T2> which just s …
4
votes
10answers
583 views
How to implement a SQL like ‘LIKE’ operator in java?
I need a comparator in java which has the same semantics as the sql 'like' operator.
For example:
myComparator.like("digital","%ital%");
myComparator.like("digital","%gi?a%");
myC …
0
votes
1answer
172 views
How to handle multiple wildcards with SQL Server
Hello,
I have some filters in the following form:
Object A
+/- Start End
----------------------------------------------
+ 000000080000 000000090000
- 000000800500
+ …
2
votes
2answers
423 views
How do I fix this Java generics wildcard error?
In this question, TofuBeer was having problems creating a genericized IterableEnumeration.
The answer came from jcrossley3 pointing to this link http://www.javaspecialists.eu/arch …
3
votes
4answers
606 views
What is the equivalent of java wildcards in C# generics
I'm developing an application where I the need to invoke a method of a generic class and I don't care about the instances actual type. Something like the following Java code:
publ …
6
votes
2answers
276 views
Scala’s existential types
A bit more specific than this question, can someone tell me what is the difference between Scala's existential types and Java's wildcard, prefereably with some illustrative example …
4
votes
4answers
313 views
Fastest way to bruteforce a string using a DOS wildcard
This problem is similar to blind SQL injections. The goal is to determine the exact value of a string, and the only test you can do is to see if a DOS-style wildcard (? = any chara …
0
votes
6answers
628 views
Windows equivalent of ls * (asterisk) directory wildcarding?
Another question from an long-time Unix/Linux user who finds himself in a Windows world. First let me explain exactly what I'm trying to do. I'm using the Windows cmd.exe shell, …
1
vote
3answers
579 views
Mysql query with wildcard on number strings
I am trying to query a mysql table which contains strings of numbers
(i.e. '1,2,3,4,5').
How do I search to see if it has '1' but not '11' bearing in mind if it is '9,10' '9%' doe …
