Class FlatEntryStructure

  • Direct Known Subclasses:
    OneOffEntryIDStructure

    public class FlatEntryStructure
    extends java.lang.Object
    Represents an [MS-OXCDATA] 2.3.2 FlatEntry Structure in Java.
    Author:
    Guido Stein
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      byte[] getEntryID()
      Returns the EntryID bytes.
      long getSize()
      Returns the number of bytes of following EntryID field.
      void setEntryID​(byte[] entryID)
      Sets the EntryID bytes.
      • Methods inherited from class java.lang.Object

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

      • FlatEntryStructure

        public FlatEntryStructure()
        Default constructor
      • FlatEntryStructure

        public FlatEntryStructure​(java.nio.ByteBuffer bf)
        Constructor for byte parsing.
        Parameters:
        bf - ByteBuffer source for parsing.
    • Method Detail

      • getSize

        public long getSize()
        Returns the number of bytes of following EntryID field.
        Returns:
        Number of bytes.
      • getEntryID

        public byte[] getEntryID()
        Returns the EntryID bytes.
        Returns:
        Byte array representation of EntryID.
      • setEntryID

        public void setEntryID​(byte[] entryID)
        Sets the EntryID bytes.
        Parameters:
        entryID - Byte array data to set.