Technically there is no difference with respect to the state of the waiting thread. From the JavaDoc:
If the lock is held by another thread then the current thread becomes disabled
for thread scheduling purposes and lies dormant [...]
This is very similar to what happens in case of sleeping, but I guess we can't say for sure unless we know the implementation.
Now, note this part:
[...] lies dormant until one of three things happens:
The lock is acquired by the current thread; or [...]
That means that in case the lock becomes free in the meantime, it will acquire it and return. In the other case, while it is sleeping, the thread has no chance to get the lock even if it is free.
Another subtle difference that may appear between the two cases is the fact that the timed trylock is sensitive to the fairness policy of the ReentrantLock. That is:
If this lock has been set to use a fair ordering policy then an available lock
will not be acquired if any other threads are waiting for the lock.
The untimed trylock is known to be not fair and may succeed to acquire the lock even if other threads are already waiting on it.