你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
BlobQueryError Class
- java.
lang. Object - com.
azure. storage. blob. models. BlobQueryError
- com.
public class BlobQueryError
Defines a blob query error that can be returned on parsing a blob query request.
Constructor Summary
Constructor | Description |
---|---|
BlobQueryError(boolean fatal, String name, String description, long position) |
Creates a new Blob |
Method Summary
Modifier and Type | Method and Description |
---|---|
String | getDescription() |
String | getName() |
long | getPosition() |
boolean |
isFatal()
Whether or not the error is fatal. |
String | toString() |
Methods inherited from java.lang.Object
Constructor Details
BlobQueryError
public BlobQueryError(boolean fatal, String name, String description, long position)
Creates a new BlobQueryError object.
Parameters:
Method Details
getDescription
public String getDescription()
Returns:
getName
public String getName()
Returns:
getPosition
public long getPosition()
Returns:
isFatal
public boolean isFatal()
Whether or not the error is fatal. If true, this error prevents further query processing. More result data may be returned, but there is no guarantee that all of the original data will be processed. If false, this error does not prevent further query processing.
Returns:
toString
public String toString()
Overrides:
BlobQueryError.toString()