Interface and Description |
---|
com.devexperts.services.StartupService
No replacement
|
Method and Description |
---|
com.devexperts.util.IndexedSet.contains(Object)
Use
IndexedSet.containsValue(V) to be explicit about type and intent. |
com.devexperts.util.IndexedMap.get(Object)
Use
IndexedMap.getByKey(K) to be explicit about type and intent. |
com.devexperts.io.BufferedInput.mark(int)
This method is for compatibility with interface of
InputStream class only,
do not use it, because the actual value of readLimit is irrelevant for
all implementations of BufferedInput .
Use mark and unmark methods instead. |
com.devexperts.io.BufferedInput.mark(long)
This method is for conceptual compatibility with interface of
InputStream class only,
do not use it, because the actual value of readLimit is irrelevant for
all implementations of BufferedInput .
Use mark and unmark methods instead. |
com.devexperts.io.IOUtil.readCharArrayString(DataInput) |
com.devexperts.io.ByteArrayInput.readData(int)
This method is provided for backwards compatibility, because
it is extended in some legacy classes. It is always invoked with a length of 1.
Override
ByteArrayInput.readData() instead. |
com.devexperts.util.IndexedMap.remove(Object)
Use
IndexedMap.removeKey(K) to be explicit about type and intent. |
com.devexperts.services.Services.startup()
No replacement.
|
Constructor and Description |
---|
com.devexperts.services.Services() |
Copyright © 2015 Devexperts. All Rights Reserved.