org.virtualbox_7_0
Class IFsInfo

java.lang.Object
  extended by org.virtualbox_7_0.IUnknown
      extended by org.virtualbox_7_0.IFsInfo
Direct Known Subclasses:
IGuestFsInfo

public class IFsInfo
extends IUnknown

Abstract parent interface for VirtualBox file system information. This can be information about a host or guest file system, for example. Interface ID: {3DB2AB1A-6CF7-42F1-8BF5-E1C0553E0B30}


Field Summary
 
Fields inherited from class org.virtualbox_7_0.IUnknown
obj, objMgr, port
 
Constructor Summary
IFsInfo(java.lang.String wrapped, org.virtualbox_7_0.ObjectRefManager objMgr, org.virtualbox_7_0.jaxws.VboxPortType port)
           
 
Method Summary
 java.lang.Long getBlockSize()
          Block size (in bytes) of the filesystem.
 java.lang.Long getFreeSize()
          Remaining free space (in bytes) of the filesystem.
 java.lang.Boolean getIsCaseSensitive()
          TRUE if the filesystem is case sensitive, FALSE if the filesystem is case insensitive.
 java.lang.Boolean getIsCompressed()
          TRUE if the filesystem is compressed, FALSE if it isn't or we don't know.
 java.lang.Boolean getIsReadOnly()
          TRUE if the filesystem is mounted read only, FALSE if the filesystem is mounted read write.
 java.lang.Boolean getIsRemote()
          TRUE if the filesystem is remote, FALSE if the filesystem is local.
 java.lang.String getLabel()
          Label of the filesystem.
 java.lang.Long getMaxComponent()
          The maximum size of a filesystem object name.
 java.lang.String getMountPoint()
          Mount point of the filesystem.
 java.lang.Long getSectorSize()
          Sector size (in bytes) of the filesystem.
 java.lang.Long getSerialNumber()
          Serial number of the filesystem.
 java.lang.Boolean getSupportsFileCompression()
          TRUE if the filesystem compresses of individual files, FALSE if it doesn't or we don't know.
 java.lang.Long getTotalSize()
          Total space (in bytes) of the filesystem.
 java.lang.String getType()
          Name of the filesystem.
static IFsInfo queryInterface(IUnknown obj)
           
 
Methods inherited from class org.virtualbox_7_0.IUnknown
getObjMgr, getRemoteWSPort, getWrapped, releaseRemote
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IFsInfo

public IFsInfo(java.lang.String wrapped,
               org.virtualbox_7_0.ObjectRefManager objMgr,
               org.virtualbox_7_0.jaxws.VboxPortType port)
Method Detail

getFreeSize

public java.lang.Long getFreeSize()
Remaining free space (in bytes) of the filesystem.

Returns:
Long

getTotalSize

public java.lang.Long getTotalSize()
Total space (in bytes) of the filesystem.

Returns:
Long

getBlockSize

public java.lang.Long getBlockSize()
Block size (in bytes) of the filesystem.

Returns:
Long

getSectorSize

public java.lang.Long getSectorSize()
Sector size (in bytes) of the filesystem.

Returns:
Long

getSerialNumber

public java.lang.Long getSerialNumber()
Serial number of the filesystem.

Returns:
Long

getIsRemote

public java.lang.Boolean getIsRemote()
TRUE if the filesystem is remote, FALSE if the filesystem is local.

Returns:
Boolean

getIsCaseSensitive

public java.lang.Boolean getIsCaseSensitive()
TRUE if the filesystem is case sensitive, FALSE if the filesystem is case insensitive.

Returns:
Boolean

getIsReadOnly

public java.lang.Boolean getIsReadOnly()
TRUE if the filesystem is mounted read only, FALSE if the filesystem is mounted read write.

Returns:
Boolean

getIsCompressed

public java.lang.Boolean getIsCompressed()
TRUE if the filesystem is compressed, FALSE if it isn't or we don't know.

Returns:
Boolean

getSupportsFileCompression

public java.lang.Boolean getSupportsFileCompression()
TRUE if the filesystem compresses of individual files, FALSE if it doesn't or we don't know.

Returns:
Boolean

getMaxComponent

public java.lang.Long getMaxComponent()
The maximum size of a filesystem object name.

Returns:
Long

getType

public java.lang.String getType()
Name of the filesystem.

Returns:
String

getLabel

public java.lang.String getLabel()
Label of the filesystem.

Returns:
String

getMountPoint

public java.lang.String getMountPoint()
Mount point of the filesystem.

Returns:
String

queryInterface

public static IFsInfo queryInterface(IUnknown obj)