Class Range
- java.lang.Object
-
- com.azure.storage.file.share.models.Range
-
public final class Range extends Object
An Azure Storage file range.
-
-
Constructor Summary
Constructors Constructor Description Range()
-
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.RangesetEnd(long end)Set the end property: End of the range.RangesetStart(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 Range setStart(long start)
Set the start property: Start of the range.- Parameters:
start- the start value to set.- Returns:
- the Range object itself.
-
getEnd
public long getEnd()
Get the end property: End of the range.- Returns:
- the end value.
-
setEnd
public Range setEnd(long end)
Set the end property: End of the range.- Parameters:
end- the end value to set.- Returns:
- the Range object itself.
-
-