你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

ShareStatistics Class

  • java.lang.Object
    • com.azure.storage.file.share.models.ShareStatistics

public final class ShareStatistics

Contains statistics about a Share in the storage File service.

Constructor Summary

Constructor Description
ShareStatistics(int shareUsageInGB)

Creates an instance of storage statistics for a Share.

ShareStatistics(long shareUsageInBytes)

Creates an instance of storage statistics for a Share.

Method Summary

Modifier and Type Method and Description
long getShareUsageInBytes()

Get the size in bytes of the Share.

int getShareUsageInGB()

Get the size in GB of the Share.

Methods inherited from java.lang.Object

Constructor Details

ShareStatistics

public ShareStatistics(int shareUsageInGB)

Creates an instance of storage statistics for a Share.

Parameters:

shareUsageInGB - Size in GB of the Share

ShareStatistics

public ShareStatistics(long shareUsageInBytes)

Creates an instance of storage statistics for a Share.

Parameters:

shareUsageInBytes - Size in bytes of the Share

Method Details

getShareUsageInBytes

public long getShareUsageInBytes()

Get the size in bytes of the Share.

Returns:

the size in bytes of the Share

getShareUsageInGB

public int getShareUsageInGB()

Get the size in GB of the Share.

Returns:

the size in GB of the Share

Applies to