Interface IFileData

  • All Superinterfaces:
    com4j.Com4jObject

    public interface IFileData
    extends com4j.Com4jObject
    Information about a folder or file.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      IList items()
      The folder's child items.
      java.lang.Object items​(int index)  
      java.util.Date modifyDate()
      The file's modify date.
      java.lang.String name()
      The file or folder name.
      int size()
      The file size in Kbytes.
      short type()
      The type of object for which data is stored.
      • Methods inherited from interface com4j.Com4jObject

        advise, dispose, equals, getComThread, getIUnknownPointer, getPointer, getPtr, hashCode, is, queryInterface, setName, toString
    • Method Detail

      • name

        java.lang.String name()

        The file or folder name.

        Getter method for the COM property "Name"

        Returns:
        Returns a value of type java.lang.String
      • type

        short type()

        The type of object for which data is stored.

        Returns:
        Returns a value of type short
      • size

        int size()

        The file size in Kbytes.

        Returns:
        Returns a value of type int
      • modifyDate

        java.util.Date modifyDate()

        The file's modify date.

        Returns:
        Returns a value of type java.util.Date
      • items

        IList items()

        The folder's child items.

        Returns:
        Returns a value of type otaclient.IList
      • items

        java.lang.Object items​(int index)