Class FileRange
- java.lang.Object
-
- com.azure.storage.file.share.models.FileRange
-
public final class FileRange extends Object
An Azure Storage file range.
-
-
Constructor Summary
Constructors Constructor Description FileRange()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetEnd()Get the end property: End of the range.longgetStart()Get the start property: Start of the range.FileRangesetEnd(long end)Set the end property: End of the range.FileRangesetStart(long start)Set the start property: Start of the range.
-
-
-
Method Detail
-
getStart
public long getStart()
Get the start property: Start of the range.- Returns:
- the start value.
-
setStart
public FileRange setStart(long start)
Set the start property: Start of the range.- Parameters:
start- the start value to set.- Returns:
- the FileRange object itself.
-
getEnd
public long getEnd()
Get the end property: End of the range.- Returns:
- the end value.
-
setEnd
public FileRange setEnd(long end)
Set the end property: End of the range.- Parameters:
end- the end value to set.- Returns:
- the FileRange object itself.
-
-