|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.zkoss.io.Serializables
public class Serializables
Utilities to handle java.io.Serializable.
Field Summary | |
---|---|
static org.slf4j.Logger |
logio
The logger called org.zkoss.io.serializable used to log serialization information. |
Method Summary | ||
---|---|---|
static
|
smartRead(java.io.ObjectInputStream s,
java.util.Collection<T> col)
Reads serializable elements back (serialized by smartWrite(ObjectOutputStream,Collection) ) |
|
static
|
smartRead(java.io.ObjectInputStream s,
java.util.List<T> col)
Reads serializable elements back (serialized by smartWrite(ObjectOutputStream,Collection) ) |
|
static
|
smartRead(java.io.ObjectInputStream s,
java.util.Map<K,V> map)
Reads serializable entries back (serialized by smartWrite(ObjectOutputStream,Map) ). |
|
static
|
smartWrite(java.io.ObjectOutputStream s,
java.util.Collection<T> col)
Writes only serializable elements of the specified collection. |
|
static
|
smartWrite(java.io.ObjectOutputStream s,
java.util.Map<K,V> map)
Writes only serializable entries of the specified map. |
|
static void |
smartWrite(java.io.ObjectOutputStream s,
java.lang.Object val)
Writes the given value only if it is serializable. |
|
static
|
smartWrite(java.io.ObjectOutputStream s,
T[] ary)
Writes only serializable elements of the specified array. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final org.slf4j.Logger logio
Method Detail |
---|
public static <K,V> void smartWrite(java.io.ObjectOutputStream s, java.util.Map<K,V> map) throws java.io.IOException
java.io.IOException
public static <K,V> java.util.Map<K,V> smartRead(java.io.ObjectInputStream s, java.util.Map<K,V> map) throws java.io.IOException, java.lang.ClassNotFoundException
smartWrite(ObjectOutputStream,Map)
).
map
- the map to hold the data being read. If null and any data
is read, a new map (HashMap) is created and returned.
java.io.IOException
java.lang.ClassNotFoundException
public static <T> void smartWrite(java.io.ObjectOutputStream s, java.util.Collection<T> col) throws java.io.IOException
java.io.IOException
public static <T> java.util.Collection<T> smartRead(java.io.ObjectInputStream s, java.util.Collection<T> col) throws java.io.IOException, java.lang.ClassNotFoundException
smartWrite(ObjectOutputStream,Collection)
)
col
- the collection to hold the data being read. If null and
and data is read, a new collection (LinkedList) is created and returned.
java.io.IOException
java.lang.ClassNotFoundException
public static <T> java.util.List<T> smartRead(java.io.ObjectInputStream s, java.util.List<T> col) throws java.io.IOException, java.lang.ClassNotFoundException
smartWrite(ObjectOutputStream,Collection)
)
col
- the collection to hold the data being read. If null and
and data is read, a new collection (LinkedList) is created and returned.
java.io.IOException
java.lang.ClassNotFoundException
public static <T> void smartWrite(java.io.ObjectOutputStream s, T[] ary) throws java.io.IOException
To read back, use smartRead(ObjectInputStream, Collection)
.
java.io.IOException
public static void smartWrite(java.io.ObjectOutputStream s, java.lang.Object val) throws java.io.IOException
java.io.IOException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |