Class NodeFile
- java.lang.Object
-
- com.microsoft.azure.batch.protocol.models.NodeFile
-
public class NodeFile extends Object
Information about a file or directory on a Compute Node.
-
-
Constructor Summary
Constructors Constructor Description NodeFile()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Boolean
isDirectory()
Get the isDirectory value.String
name()
Get the name value.FileProperties
properties()
Get the properties value.String
url()
Get the url value.NodeFile
withIsDirectory(Boolean isDirectory)
Set the isDirectory value.NodeFile
withName(String name)
Set the name value.NodeFile
withProperties(FileProperties properties)
Set the properties value.NodeFile
withUrl(String url)
Set the url value.
-
-
-
Method Detail
-
name
public String name()
Get the name value.- Returns:
- the name value
-
withName
public NodeFile withName(String name)
Set the name value.- Parameters:
name
- the name value to set- Returns:
- the NodeFile object itself.
-
url
public String url()
Get the url value.- Returns:
- the url value
-
withUrl
public NodeFile withUrl(String url)
Set the url value.- Parameters:
url
- the url value to set- Returns:
- the NodeFile object itself.
-
isDirectory
public Boolean isDirectory()
Get the isDirectory value.- Returns:
- the isDirectory value
-
withIsDirectory
public NodeFile withIsDirectory(Boolean isDirectory)
Set the isDirectory value.- Parameters:
isDirectory
- the isDirectory value to set- Returns:
- the NodeFile object itself.
-
properties
public FileProperties properties()
Get the properties value.- Returns:
- the properties value
-
withProperties
public NodeFile withProperties(FileProperties properties)
Set the properties value.- Parameters:
properties
- the properties value to set- Returns:
- the NodeFile object itself.
-
-