Index
All Classes and Interfaces|All Packages|Constant Field Values
A
- add(PathMatcher, int) - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.ChildLimitBuilder
-
Adds a child limit rule for paths matching the given matcher.
- add(PathMatcher, int) - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathSortBuilder
-
Adds a rule that assigns a precedence value to all paths matching the specified
PathMatcher. - add(PathMatcher, String) - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.LineExtensionBuilder
-
Adds a rule that appends the given extension when the matcher matches.
- add(Function<Path, String>) - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.LineExtensionBuilder
-
Adds a custom line extension rule.
- add(ToIntFunction<Path>) - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.ChildLimitBuilder
-
Adds a custom rule expressed as a
ToIntFunction. - add(ToIntFunction<Path>) - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathSortBuilder
-
Adds a custom rule function defining a precedence for a path.
- addFirst(PathMatcher) - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathSortBuilder
-
Adds a rule that forces matching paths to appear first in the sort order.
- addLast(PathMatcher) - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathSortBuilder
-
Adds a rule that forces matching paths to appear last in the sort order.
- addLineBreak(PathMatcher) - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.LineExtensionBuilder
-
Adds a rule that forces a line break (instead of appending text) whenever the given matcher matches.
- allOf(Iterable<PathMatcher>) - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
-
Returns a matcher that requires all of the provided matchers to succeed.
- allOf(PathMatcher, PathMatcher...) - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
-
Returns a matcher that requires all of the provided matchers to succeed.
- ALPHABETICAL - Static variable in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathSorts
-
Default alphabetical comparator based on the file name.
- anyOf(Iterable<PathMatcher>) - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
-
Returns a matcher that requires any of the provided matchers to succeed.
- anyOf(PathMatcher, PathMatcher...) - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
-
Returns a matcher that requires any of the provided matchers to succeed.
- append(DepthSymbol) - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.depth.Depth
- areCompactDirectoriesUsed() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PrettyPrintOptions
- areCompactDirectoriesUsed() - Method in interface io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.RenderingOptions
-
Are directories compacted into one entry?
- areEmojisUsed() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PrettyPrintOptions
- areEmojisUsed() - Method in interface io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.RenderingOptions
-
Are emojis used (filename, etc.)?
B
- build() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.ChildLimitBuilder
-
Builds the final child limit function based on the configured rules.
- build() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.FileTreePrettyPrinterBuilder
-
Builds the pretty printer using the configured options.
- build() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.LineExtensionBuilder
-
Builds the final function mapping a
Pathto an extension string. - build() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathSortBuilder
-
Builds the final
Comparator<Path>based on the configured rules. - builder() - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.ChildLimits
-
Returns a new
ChildLimitBuilderwith the default limit set toChildLimits.UNLIMITED. - builder() - Static method in interface io.github.computerdaddyguy.jfiletreeprettyprinter.FileTreePrettyPrinter
-
Customize creation of a pretty printer through a builder.
- builder() - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.LineExtensions
-
Returns a new
LineExtensionBuilder. - builder() - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathSorts
-
Returns a new
PathSortBuilder. - builder(int) - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.ChildLimits
-
Returns a new
ChildLimitBuilderwith the given default limit. - BY_EXTENSION - Static variable in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathSorts
-
Comparator that sorts files by their extension(s), defined as the substring(s) after each '.' in the name.
- BY_FILE_SIZE - Static variable in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathSorts
-
Comparator that sorts paths by file size in ascending order.
C
- ChildLimitBuilder - Class in io.github.computerdaddyguy.jfiletreeprettyprinter
-
A builder for creating a
ToIntFunction<Path>that defines how many child entries (files or directories) are allowed under a given path. - ChildLimits - Class in io.github.computerdaddyguy.jfiletreeprettyprinter
-
Utility class providing constants and factory methods for creating
ChildLimitBuilderinstances. - CLASSIC_ASCII - Enum constant in enum class io.github.computerdaddyguy.jfiletreeprettyprinter.PrettyPrintOptions.TreeFormat
-
Uses characters: |--, `-- and │
- create(RenderingOptions) - Static method in interface io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.TreeEntryRenderer
-
Create a new tree renderer, using given options
- create(ScanningOptions) - Static method in interface io.github.computerdaddyguy.jfiletreeprettyprinter.scanner.PathToTreeScanner
-
Creates a new path handler with given options.
- createDefault() - Static method in interface io.github.computerdaddyguy.jfiletreeprettyprinter.FileTreePrettyPrinter
-
Create a pretty printer with default options.
- createDefault() - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PrettyPrintOptions
-
Create new default options that can be customized using various
withXXXmethods. - createDefault() - Static method in interface io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.file.EmojiMapping
- createDefault() - Static method in interface io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.file.FileFormatter
- createNewEmpty() - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.depth.Depth
- customizeOptions(UnaryOperator<PrettyPrintOptions>) - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.FileTreePrettyPrinterBuilder
-
Customizes the options
D
- DEFAULT_PRECEDENCE - Static variable in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathSortBuilder
-
Default precedence (neutral value).
- Depth - Class in io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.depth
- Depth(List<DepthSymbol>) - Constructor for class io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.depth.Depth
- DepthFormatter - Interface in io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.depth
- DepthSymbol - Enum Class in io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.depth
- Design notes - Search tag in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
- Section
- DIRECTORY_FIRST - Static variable in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathSorts
-
Comparator that places directories before files.
- DIRECTORY_LAST - Static variable in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathSorts
-
Comparator that places files before directories.
- DirectoryEntry(Path, List<TreeEntry>) - Constructor for class io.github.computerdaddyguy.jfiletreeprettyprinter.scanner.TreeEntry.DirectoryEntry
E
- EmojiMapping - Interface in io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.file
- equals(Object) - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.depth.Depth
- Example usage: - Search tag in class io.github.computerdaddyguy.jfiletreeprettyprinter.ChildLimitBuilder
- Section
- Example usage: - Search tag in class io.github.computerdaddyguy.jfiletreeprettyprinter.ChildLimits
- Section
- Example usage: - Search tag in class io.github.computerdaddyguy.jfiletreeprettyprinter.FileTreePrettyPrinterBuilder
- Section
- Example usage: - Search tag in class io.github.computerdaddyguy.jfiletreeprettyprinter.LineExtensions
- Section
- Example usage: - Search tag in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathSortBuilder
- Section
F
- FileEntry(Path, BasicFileAttributes) - Constructor for class io.github.computerdaddyguy.jfiletreeprettyprinter.scanner.TreeEntry.FileEntry
- FileFormatter - Interface in io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.file
- FileTreePrettyPrinter - Interface in io.github.computerdaddyguy.jfiletreeprettyprinter
-
Pretty prints a file tree, and returns the result as a String.
- FileTreePrettyPrinterBuilder - Class in io.github.computerdaddyguy.jfiletreeprettyprinter
-
Builder for creating
FileTreePrettyPrinterinstances with customizablePrettyPrintOptions. - filterDirectories(PathMatcher) - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PrettyPrintOptions
-
Use a custom filter for retain only some directories.
- filterFiles(PathMatcher) - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PrettyPrintOptions
-
Use a custom filter for retain only some files.
- format(Depth) - Method in interface io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.depth.DepthFormatter
- formatChildLimitReached(TreeEntry.SkippedChildrenEntry) - Method in interface io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.file.FileFormatter
- formatDirectoryBegin(TreeEntry.DirectoryEntry, List<Path>) - Method in interface io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.file.FileFormatter
- formatFile(TreeEntry.FileEntry) - Method in interface io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.file.FileFormatter
- formatMaxDepthReached(TreeEntry.MaxDepthReachEntry) - Method in interface io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.file.FileFormatter
G
- getAttrs() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.scanner.TreeEntry.FileEntry
- getChildLimit() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PrettyPrintOptions
- getChildLimit() - Method in interface io.github.computerdaddyguy.jfiletreeprettyprinter.scanner.ScanningOptions
- getDepth() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.scanner.TreeEntry.MaxDepthReachEntry
- getDir() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.scanner.TreeEntry.DirectoryEntry
- getEntries() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.scanner.TreeEntry.DirectoryEntry
- getFile() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.scanner.TreeEntry.FileEntry
- getFileEmoji(Path) - Method in interface io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.file.EmojiMapping
-
Get the emoji to display for the given file (i.e. the file type icon).
- getInstance(PrettyPrintOptions.TreeFormat) - Static method in interface io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.depth.DepthFormatter
- getLineExtension() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PrettyPrintOptions
- getLineExtension() - Method in interface io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.RenderingOptions
-
The line extension function.
- getMaxDepth() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PrettyPrintOptions
- getMaxDepth() - Method in interface io.github.computerdaddyguy.jfiletreeprettyprinter.scanner.ScanningOptions
- getSize() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.depth.Depth
- getSkippedChildren() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.scanner.TreeEntry.SkippedChildrenEntry
- getSymbols() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.depth.Depth
- getTreeFormat() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PrettyPrintOptions
- getTreeFormat() - Method in interface io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.RenderingOptions
-
The format used to render file structure tree.
H
- hasAbsolutePathMatching(PathMatcher) - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
-
Creates a matcher that applies another matcher to the path’s absolute, normalized form.
- hasAbsolutePathMatchingGlob(String) - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
-
Creates a matcher testing the absolute, normalized path string against a glob expression.
- hasAnyAncestorMatching(PathMatcher) - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
-
Matches paths having any ancestor that matches another matcher.
- hasAnyDescendantMatching(PathMatcher) - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
-
Matches directories that have at least one descendant (child, grandchild, etc.) matching another matcher.
- hasAnyDirectChildMatching(PathMatcher) - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
-
Matches directories that have at least one direct child matching another matcher.
- hasDirectParentMatching(PathMatcher) - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
-
Matches paths whose direct parent matches another matcher.
- hasExtension(String) - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
-
Matches paths whose file name ends with the given extension.
- hashCode() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.depth.Depth
- hasName(String) - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
-
Matches paths whose file name is exactly equal to
name. - hasNameEndingWith(String) - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
-
Matches paths whose file name ends with a suffix.
- hasNameIgnoreCase(String) - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
-
Matches paths whose file name is equal to
name, ignoring case. - hasNameMatching(Pattern) - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
-
Matches paths whose file name matches a regular expression.
- hasNameMatchingGlob(String) - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
-
Matches paths whose file name matches a glob expression.
- hasNameStartingWith(String) - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
-
Matches paths whose file name starts with a prefix.
- hasRelativePathMatching(Path, PathMatcher) - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
-
Creates a matcher that applies another matcher to the relative path between a reference and the tested path.
- hasRelativePathMatchingGlob(Path, String) - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
-
Creates a matcher testing the relative path of a path with respect to a reference directory against a glob expression.
- hasSiblingMatching(PathMatcher) - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
-
Matches paths that have at least one sibling matching another matcher.
- HIGHEST_PRECEDENCE - Static variable in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathSortBuilder
-
Highest possible precedence — items appear first.
I
- ifMatchesThenElse(PathMatcher, PathMatcher, PathMatcher) - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
-
Returns a conditional matcher.
- io.github.computerdaddyguy.jfiletreeprettyprinter - package io.github.computerdaddyguy.jfiletreeprettyprinter
- io.github.computerdaddyguy.jfiletreeprettyprinter.renderer - package io.github.computerdaddyguy.jfiletreeprettyprinter.renderer
- io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.depth - package io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.depth
- io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.file - package io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.file
- io.github.computerdaddyguy.jfiletreeprettyprinter.scanner - package io.github.computerdaddyguy.jfiletreeprettyprinter.scanner
- isDirectory() - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
-
Matches paths that are directories.
- isEmpty() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.depth.Depth
- isFile() - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
-
Matches paths that are files (not directories).
- isRegularFile() - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
-
Matches paths that are regular files.
- isRoot() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.depth.Depth
- isSymbolicLink() - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
-
Matches paths that are symbolic links.
L
- LAST_FILE - Enum constant in enum class io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.depth.DepthSymbol
-
Symbol for a file that is the last in its directory (=has no next file).
- LINE_BREAK_EXTENSION - Static variable in class io.github.computerdaddyguy.jfiletreeprettyprinter.LineExtensions
-
Indicates a forced line break (empty string).
- LineExtensionBuilder - Class in io.github.computerdaddyguy.jfiletreeprettyprinter
-
A builder for constructing functions that provide optional line extensions (such as comments or formatting markers) when pretty-printing file trees.
- LineExtensions - Class in io.github.computerdaddyguy.jfiletreeprettyprinter
-
Utility class providing constants and factory methods for creating
LineExtensionBuilderinstances used to define per-path line extensions in pretty-printed file trees. - LOWEST_PRECEDENCE - Static variable in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathSortBuilder
-
Lowest possible precedence — items appear last.
M
- MaxDepthReachEntry(int) - Constructor for class io.github.computerdaddyguy.jfiletreeprettyprinter.scanner.TreeEntry.MaxDepthReachEntry
N
- NO_EXTENSION - Static variable in class io.github.computerdaddyguy.jfiletreeprettyprinter.LineExtensions
-
Indicates that no extension should be applied to the line (
null). - NON_LAST_FILE - Enum constant in enum class io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.depth.DepthSymbol
-
Symbol for a file that is not the last in its directory (=has a next file).
- NONE - Enum constant in enum class io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.depth.DepthSymbol
-
Symbol of representing the absence of file.
- noneOf(Iterable<PathMatcher>) - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
-
Returns a matcher that requires none of the provided matchers to succeed.
- noneOf(PathMatcher, PathMatcher...) - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
-
Returns a matcher that requires none of the provided matchers to succeed.
- not(PathMatcher) - Static method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PathMatchers
-
Returns a matcher that negates the result of another matcher.
P
- pathComparator() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PrettyPrintOptions
- pathComparator() - Method in interface io.github.computerdaddyguy.jfiletreeprettyprinter.scanner.ScanningOptions
- pathFilter() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PrettyPrintOptions
- pathFilter() - Method in interface io.github.computerdaddyguy.jfiletreeprettyprinter.scanner.ScanningOptions
- PathMatchers - Class in io.github.computerdaddyguy.jfiletreeprettyprinter
-
Utility class providing factory and composition methods for
PathMatchers. - PathSortBuilder - Class in io.github.computerdaddyguy.jfiletreeprettyprinter
-
A builder for creating a
Comparator<Path>that defines a custom sorting order for file system paths based on rule precedence. - PathSorts - Class in io.github.computerdaddyguy.jfiletreeprettyprinter
- PathToTreeScanner - Interface in io.github.computerdaddyguy.jfiletreeprettyprinter.scanner
- pop() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.depth.Depth
- prettyPrint(String) - Method in interface io.github.computerdaddyguy.jfiletreeprettyprinter.FileTreePrettyPrinter
-
Pretty prints the given path.
- prettyPrint(Path) - Method in interface io.github.computerdaddyguy.jfiletreeprettyprinter.FileTreePrettyPrinter
-
Pretty prints the given path.
- PrettyPrintOptions - Class in io.github.computerdaddyguy.jfiletreeprettyprinter
- PrettyPrintOptions() - Constructor for class io.github.computerdaddyguy.jfiletreeprettyprinter.PrettyPrintOptions
- PrettyPrintOptions.TreeFormat - Enum Class in io.github.computerdaddyguy.jfiletreeprettyprinter
R
- RenderingOptions - Interface in io.github.computerdaddyguy.jfiletreeprettyprinter.renderer
- renderTree(TreeEntry) - Method in interface io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.TreeEntryRenderer
S
- scan(Path) - Method in interface io.github.computerdaddyguy.jfiletreeprettyprinter.scanner.PathToTreeScanner
- ScanningOptions - Interface in io.github.computerdaddyguy.jfiletreeprettyprinter.scanner
- setDefault(int) - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.ChildLimitBuilder
-
Sets the default child limit to apply when no specific rule matches.
- SKIP - Enum constant in enum class io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.depth.DepthSymbol
-
Symbol for representing a "skip", meaning a continue until next file.
- SkippedChildrenEntry(List<Path>) - Constructor for class io.github.computerdaddyguy.jfiletreeprettyprinter.scanner.TreeEntry.SkippedChildrenEntry
- sort(Comparator<Path>) - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PrettyPrintOptions
-
Use a custom path comparator to sort files and directories at the same depth level.
T
- toString() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.depth.Depth
- toString() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.scanner.TreeEntry.DirectoryEntry
- toString() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.scanner.TreeEntry.FileEntry
- toString() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.scanner.TreeEntry.MaxDepthReachEntry
- toString() - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.scanner.TreeEntry.SkippedChildrenEntry
- TreeEntry - Interface in io.github.computerdaddyguy.jfiletreeprettyprinter.scanner
- TreeEntry.DirectoryEntry - Class in io.github.computerdaddyguy.jfiletreeprettyprinter.scanner
- TreeEntry.FileEntry - Class in io.github.computerdaddyguy.jfiletreeprettyprinter.scanner
- TreeEntry.MaxDepthReachEntry - Class in io.github.computerdaddyguy.jfiletreeprettyprinter.scanner
- TreeEntry.SkippedChildrenEntry - Class in io.github.computerdaddyguy.jfiletreeprettyprinter.scanner
- TreeEntryRenderer - Interface in io.github.computerdaddyguy.jfiletreeprettyprinter.renderer
U
- UNICODE_BOX_DRAWING - Enum constant in enum class io.github.computerdaddyguy.jfiletreeprettyprinter.PrettyPrintOptions.TreeFormat
-
Uses characters: ├─, └─ and │
- UNLIMITED - Static variable in class io.github.computerdaddyguy.jfiletreeprettyprinter.ChildLimits
-
Special value indicating unlimited children (
-1).
V
- valueOf(String) - Static method in enum class io.github.computerdaddyguy.jfiletreeprettyprinter.PrettyPrintOptions.TreeFormat
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.depth.DepthSymbol
-
Returns the enum constant of this class with the specified name.
- values() - Static method in enum class io.github.computerdaddyguy.jfiletreeprettyprinter.PrettyPrintOptions.TreeFormat
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.depth.DepthSymbol
-
Returns an array containing the constants of this enum class, in the order they are declared.
W
- withChildLimit(int) - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PrettyPrintOptions
-
Set a fixed limit to the number of visited children, per directory.
- withChildLimit(ToIntFunction<Path>) - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PrettyPrintOptions
-
Set a function that dynamically limits the number of visited children, depending on the parent directory.
- withCompactDirectories(boolean) - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PrettyPrintOptions
-
Whether or not compact directories chain into a single entry in the rendered tree.
- withEmojis(boolean) - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PrettyPrintOptions
-
Whether or not use emojis in directory/filename rendering.
- withLineExtension(Function<Path, String>) - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PrettyPrintOptions
-
Sets a custom line extension function that appends additional text to each printed line, allowing you to customize the display of files or directories.
- withMaxDepth(int) - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PrettyPrintOptions
-
Set the max directory depth from the root.
- withOptions(PrettyPrintOptions) - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.FileTreePrettyPrinterBuilder
-
Replaces all previously set options with the given options.
- withTreeFormat(PrettyPrintOptions.TreeFormat) - Method in class io.github.computerdaddyguy.jfiletreeprettyprinter.PrettyPrintOptions
-
Sets the depth rendering format.
- wrapWithEmojis(FileFormatter) - Static method in interface io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.file.FileFormatter
- wrapWithEmojis(FileFormatter, EmojiMapping) - Static method in interface io.github.computerdaddyguy.jfiletreeprettyprinter.renderer.file.FileFormatter
All Classes and Interfaces|All Packages|Constant Field Values