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

FileRange Class

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

Implements

public final class FileRange
implements XmlSerializable<FileRange>

An Azure Storage file range.

Constructor Summary

Constructor Description
FileRange()

Creates an instance of FileRange class.

Method Summary

Modifier and Type Method and Description
static FileRange fromXml(XmlReader xmlReader)

Reads an instance of FileRange from the XmlReader.

static FileRange fromXml(XmlReader xmlReader, String rootElementName)

Reads an instance of FileRange from the XmlReader.

long getEnd()

Get the end property: End of the range.

long getStart()

Get the start property: Start of the range.

FileRange setEnd(long end)

Set the end property: End of the range.

FileRange setStart(long start)

Set the start property: Start of the range.

XmlWriter toXml(XmlWriter xmlWriter)
XmlWriter toXml(XmlWriter xmlWriter, String rootElementName)

Methods inherited from java.lang.Object

Constructor Details

FileRange

public FileRange()

Creates an instance of FileRange class.

Method Details

fromXml

public static FileRange fromXml(XmlReader xmlReader)

Reads an instance of FileRange from the XmlReader.

Parameters:

xmlReader - The XmlReader being read.

Returns:

An instance of FileRange if the XmlReader was pointing to an instance of it, or null if it was pointing to XML null.

Throws:

XMLStreamException

- If an error occurs while reading the FileRange.

fromXml

public static FileRange fromXml(XmlReader xmlReader, String rootElementName)

Reads an instance of FileRange from the XmlReader.

Parameters:

xmlReader - The XmlReader being read.
rootElementName - Optional root element name to override the default defined by the model. Used to support cases where the model can deserialize from different root element names.

Returns:

An instance of FileRange if the XmlReader was pointing to an instance of it, or null if it was pointing to XML null.

Throws:

XMLStreamException

- If an error occurs while reading the FileRange.

getEnd

public long getEnd()

Get the end property: End of the range.

Returns:

the end value.

getStart

public long getStart()

Get the start property: Start of the range.

Returns:

the start 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.

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.

toXml

public XmlWriter toXml(XmlWriter xmlWriter)

Parameters:

xmlWriter

Throws:

toXml

public XmlWriter toXml(XmlWriter xmlWriter, String rootElementName)

Parameters:

xmlWriter
rootElementName

Throws:

Applies to