Class PropertyDescriptorSeqHelper

java.lang.Object
com.zeroc.IceGrid.PropertyDescriptorSeqHelper

public final class PropertyDescriptorSeqHelper extends Object
Helper class for marshaling/unmarshaling PropertyDescriptorSeq.
  • Constructor Details

    • PropertyDescriptorSeqHelper

      public PropertyDescriptorSeqHelper()
  • Method Details

    • write

      public static void write(OutputStream ostr, List<PropertyDescriptor> v)
      Marshals a list of PropertyDescriptorSeq into an output stream.
      Parameters:
      ostr - the output stream
      v - the list to marshal
    • read

      public static List<PropertyDescriptor> read(InputStream istr)
      Unmarshals a list of PropertyDescriptorSeq from an input stream.
      Parameters:
      istr - the input stream
      Returns:
      the list
    • write

      public static void write(OutputStream ostr, int tag, Optional<List<PropertyDescriptor>> v)
      Marshals an optional list of PropertyDescriptorSeq into an output stream.
      Parameters:
      ostr - the output stream
      tag - the tag
      v - the list to marshal
    • write

      public static void write(OutputStream ostr, int tag, List<PropertyDescriptor> v)
      Marshals an optional list of PropertyDescriptorSeq into an output stream.
      Parameters:
      ostr - the output stream
      tag - the tag
      v - the list to marshal
    • read

      public static Optional<List<PropertyDescriptor>> read(InputStream istr, int tag)
      Unmarshals an optional list of PropertyDescriptorSeq from an input stream.
      Parameters:
      istr - the input stream
      tag - the tag
      Returns:
      the list