Class H5O_info_t

    • Field Summary

      Fields 
      Modifier and Type Field Description
      long atime
      Access time
      long btime
      Birth time
      long ctime
      Change time
      long fileno
      File number that object is located in
      long mtime
      Modification time
      long num_attrs
      Number of attributes attached to object
      int rc
      Reference count of object
      H5O_token_t token
      Object token in file
      int type
      Basic object type (group, dataset, etc.)
    • Constructor Summary

      Constructors 
      Constructor Description
      H5O_info_t​(long fileno, H5O_token_t token, int type, int rc, long atime, long mtime, long ctime, long btime, long num_attrs)
      Constructor for data model information struct for objects
    • Field Detail

      • fileno

        public long fileno
        File number that object is located in
      • type

        public int type
        Basic object type (group, dataset, etc.)
      • rc

        public int rc
        Reference count of object
      • atime

        public long atime
        Access time
      • mtime

        public long mtime
        Modification time
      • ctime

        public long ctime
        Change time
      • btime

        public long btime
        Birth time
      • num_attrs

        public long num_attrs
        Number of attributes attached to object
    • Constructor Detail

      • H5O_info_t

        public H5O_info_t​(long fileno,
                          H5O_token_t token,
                          int type,
                          int rc,
                          long atime,
                          long mtime,
                          long ctime,
                          long btime,
                          long num_attrs)
        Constructor for data model information struct for objects
        Parameters:
        fileno - : File number that object is located in
        token - : Object token in file
        type - : Basic object type
        rc - : Reference count of object
        atime - : Access time
        mtime - : Modification time
        ctime - : Change time
        btime - : Birth time
        num_attrs - : Number of attributes attached to object