public class PathItem extends Object
PathItem contains basic information about a path item that is returned by the service after certain
operations.| Constructor and Description |
|---|
PathItem(String eTag,
OffsetDateTime lastModified,
long contentLength,
String group,
boolean isDirectory,
String name,
String owner,
String permissions)
Constructs a
PathItem |
| Modifier and Type | Method and Description |
|---|---|
long |
getContentLength()
Get the contentLength property: The contentLength property.
|
String |
getETag()
Get the eTag property: The eTag property.
|
String |
getGroup()
Get the group property: The group property.
|
OffsetDateTime |
getLastModified()
Get the lastModified property: The lastModified property.
|
String |
getName()
Get the name property: The name property.
|
String |
getOwner()
Get the owner property: The owner property.
|
String |
getPermissions()
Get the permissions property: The permissions property.
|
boolean |
isDirectory()
Get the isDirectory property: The isDirectory property.
|
public PathItem(String eTag, OffsetDateTime lastModified, long contentLength, String group, boolean isDirectory, String name, String owner, String permissions)
PathItemeTag - ETag of the path.lastModified - Datetime when the path was last modified.contentLength - The content length of the path.group - The group the path belongs to.isDirectory - Whether or not the path is a directory.name - The name of the path.owner - The owner the path belongs to.permissions - The permissions set on the path.public String getETag()
public OffsetDateTime getLastModified()
public long getContentLength()
public String getGroup()
public boolean isDirectory()
public String getName()
public String getOwner()
public String getPermissions()
Visit the Azure for Java Developers site for more Java documentation, including quick starts, tutorials, and code samples.