aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/apache/commons/lang3/SerializationUtils.java
diff options
context:
space:
mode:
authorGary D. Gregory <ggregory@apache.org>2012-04-06 20:57:05 +0000
committerGary D. Gregory <ggregory@apache.org>2012-04-06 20:57:05 +0000
commit4071b34f985be92923f75345775ad80b198693d4 (patch)
tree2affa748b449df17f4ccecce80369742f452b3fe /src/main/java/org/apache/commons/lang3/SerializationUtils.java
parente4794cddf8e33cf9442d4cd7e542ce3973924bf6 (diff)
downloadapache-commons-lang-4071b34f985be92923f75345775ad80b198693d4.tar.gz
Add comments for [LANG-798] Use generics in SerializationUtils.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1310584 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/main/java/org/apache/commons/lang3/SerializationUtils.java')
-rw-r--r--src/main/java/org/apache/commons/lang3/SerializationUtils.java63
1 files changed, 42 insertions, 21 deletions
diff --git a/src/main/java/org/apache/commons/lang3/SerializationUtils.java b/src/main/java/org/apache/commons/lang3/SerializationUtils.java
index 49fb32a9c..575998d31 100644
--- a/src/main/java/org/apache/commons/lang3/SerializationUtils.java
+++ b/src/main/java/org/apache/commons/lang3/SerializationUtils.java
@@ -167,24 +167,36 @@ public class SerializationUtils {
// Deserialize
//-----------------------------------------------------------------------
/**
- * <p>Deserializes an {@code Object} from the specified stream.</p>
- *
- * <p>The stream will be closed once the object is written. This
- * avoids the need for a finally clause, and maybe also exception
- * handling, in the application code.</p>
- *
- * <p>The stream passed in is not buffered internally within this method.
- * This is the responsibility of your application if desired.</p>
- *
- * @param inputStream the serialized object input stream, must not be null
+ * <p>
+ * Deserializes an {@code Object} from the specified stream.
+ * </p>
+ *
+ * <p>
+ * The stream will be closed once the object is written. This avoids the need for a finally clause, and maybe also
+ * exception handling, in the application code.
+ * </p>
+ *
+ * <p>
+ * The stream passed in is not buffered internally within this method. This is the responsibility of your
+ * application if desired.
+ * </p>
+ *
+ * <p>
+ * If the call site incorrectly types the return value, a {@link ClassCastException} is thrown from the call site.
+ * Without Generics in this declaration, the call site must type cast and can cause the same ClassCastException.
+ * Note that in both cases, the ClassCastException is in the call site, not in this method.
+ * </p>
+ *
+ * @param inputStream
+ * the serialized object input stream, must not be null
* @return the deserialized object
- * @throws IllegalArgumentException if {@code inputStream} is {@code null}
- * @throws SerializationException (runtime) if the serialization fails
+ * @throws IllegalArgumentException
+ * if {@code inputStream} is {@code null}
+ * @throws SerializationException
+ * (runtime) if the serialization fails
*/
@SuppressWarnings("unchecked")
// Don't warn about "(T) deserialize" because we want the avoid type casting call sites.
- // If the call site incorrectly types the return value, a ClassCastException is thrown.
- // Without Generics in this declaration, the call site must type cast and can cause the same ClassCastException.
public static <T> T deserialize(InputStream inputStream) {
if (inputStream == null) {
throw new IllegalArgumentException("The InputStream must not be null");
@@ -211,17 +223,26 @@ public class SerializationUtils {
}
/**
- * <p>Deserializes a single {@code Object} from an array of bytes.</p>
- *
- * @param objectData the serialized object, must not be null
+ * <p>
+ * Deserializes a single {@code Object} from an array of bytes.
+ * </p>
+ *
+ * <p>
+ * If the call site incorrectly types the return value, a {@link ClassCastException} is thrown from the call site.
+ * Without Generics in this declaration, the call site must type cast and can cause the same ClassCastException.
+ * Note that in both cases, the ClassCastException is in the call site, not in this method.
+ * </p>
+ *
+ * @param objectData
+ * the serialized object, must not be null
* @return the deserialized object
- * @throws IllegalArgumentException if {@code objectData} is {@code null}
- * @throws SerializationException (runtime) if the serialization fails
+ * @throws IllegalArgumentException
+ * if {@code objectData} is {@code null}
+ * @throws SerializationException
+ * (runtime) if the serialization fails
*/
@SuppressWarnings("unchecked")
// Don't warn about "(T) deserialize" because we want the avoid type casting call sites.
- // If the call site incorrectly types the return value, a ClassCastException is thrown.
- // Without Generics in this declaration, the call site must type cast and can cause the same ClassCastException.
public static <T> T deserialize(byte[] objectData) {
if (objectData == null) {
throw new IllegalArgumentException("The byte[] must not be null");