com.ibm.cics.jcicsx

Class Deserializers

  • java.lang.Object
    • com.ibm.cics.jcicsx.Deserializers


  • public final class Deserializers
    extends java.lang.Object
    Common implementations of Deserializer for various useful functions.
    See Also:
    Deserializer
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method and Description
      static Deserializer<java.lang.String> stringDeserializer(java.nio.charset.Charset cs)
      Create a deserializer to read Strings from a ReadableBITContainer using Java's integrated codepage support to decode them.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • stringDeserializer

        public static Deserializer<java.lang.String> stringDeserializer(java.nio.charset.Charset cs)
        Create a deserializer to read Strings from a ReadableBITContainer using Java's integrated codepage support to decode them. The deserializer returns null if the CICS container is empty.
        Parameters:
        cs - The charset to use to decode the bytes.
        Returns:
        The created deserializer