Class FileSystemBrowser.DirectoryElement
- java.lang.Object
-
- jetbrains.buildServer.util.browser.FileSystemBrowser.FileElement
-
- jetbrains.buildServer.util.browser.FileSystemBrowser.DirectoryElement
-
- All Implemented Interfaces:
Element
- Enclosing class:
- FileSystemBrowser
public static class FileSystemBrowser.DirectoryElement extends FileSystemBrowser.FileElement
-
-
Constructor Summary
Constructors Constructor Description DirectoryElement(Browser browser, File file, File root)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Iterable<Element>getChildren()Returns the ordered list of element's children.InputStreamgetInputStream()Returns the input stream of the element content.longgetSize()Returns the size of the element content.booleanisContentAvailable()Returns whether the content is available for the element.booleanisLeaf()Returns whether the element is a leaf, i.e.-
Methods inherited from class jetbrains.buildServer.util.browser.FileSystemBrowser.FileElement
equals, getBrowser, getFile, getFullName, getLastModifiedTimestamp, getName, hashCode, toString
-
-
-
-
Method Detail
-
isLeaf
public boolean isLeaf()
Description copied from interface:ElementReturns whether the element is a leaf, i.e. cannot have child nodes.- Specified by:
isLeafin interfaceElement- Overrides:
isLeafin classFileSystemBrowser.FileElement- Returns:
- true if the element is a leaf
-
getChildren
public Iterable<Element> getChildren() throws BrowserException
Description copied from interface:ElementReturns the ordered list of element's children. Method should returnnullfor a leaf element, and a notnullinstance for other elements. List can be empty. All children's names are different.- Specified by:
getChildrenin interfaceElement- Overrides:
getChildrenin classFileSystemBrowser.FileElement- Returns:
- the list of children, or null
- Throws:
BrowserException- in case of an error
-
isContentAvailable
public boolean isContentAvailable()
Description copied from interface:ElementReturns whether the content is available for the element. The content is usually available for leaf elements and not available for non-leaf ones. If it's not, the callgetInputStream()method will result in exception.- Specified by:
isContentAvailablein interfaceElement- Overrides:
isContentAvailablein classFileSystemBrowser.FileElement- Returns:
- true iff the content is available
-
getInputStream
@NotNull public InputStream getInputStream() throws IllegalStateException, IOException
Description copied from interface:ElementReturns the input stream of the element content. The caller is responsible for closing the stream at the end.If the content is not available for the element (see
Element.isContentAvailable()), an exception is thrown.- Specified by:
getInputStreamin interfaceElement- Overrides:
getInputStreamin classFileSystemBrowser.FileElement- Returns:
- content input stream
- Throws:
IllegalStateException- if the content is not availableIOException- if the input cannot be provided due to I/O error
-
getSize
public long getSize() throws IllegalStateExceptionDescription copied from interface:ElementReturns the size of the element content.If the content is not available for the element (see
Element.isContentAvailable()) or due to performance reasons a negative value may be returned. Though some implementations can provide the content size, while the content is not available.- Specified by:
getSizein interfaceElement- Overrides:
getSizein classFileSystemBrowser.FileElement- Returns:
- content size or negative value when unavailable
- Throws:
IllegalStateException
-
-