Package | Description |
---|---|
org.unix4j.unix.cat |
Contains private classes used by the
cat command. |
org.unix4j.unix.grep |
Contains private classes used by the
grep command. |
org.unix4j.unix.head |
Contains private classes used by the
head command. |
org.unix4j.unix.sort |
Contains private classes used by the
sort command. |
org.unix4j.unix.tail |
Contains private classes used by the
tail command. |
org.unix4j.unix.uniq |
Contains private classes used by the
uniq command. |
org.unix4j.unix.wc |
Contains private classes used by the
wc command. |
org.unix4j.unix.xargs |
Contains private classes used by the
xargs command. |
Modifier and Type | Class and Description |
---|---|
(package private) class |
CatProcessor |
(package private) class |
NumberLinesProcessor |
(package private) class |
SqueezeEmptyLinesProcessor |
Modifier and Type | Class and Description |
---|---|
(package private) class |
AbstractGrepProcessor |
(package private) class |
CountMatchingLinesProcessor
Writes the matching line count to the output.
|
(package private) class |
WriteMatchingLinesProcessor
Writes all matching lines to the output.
|
(package private) class |
WriteMatchingLinesWithLineNumberProcessor
Writes all matching lines to the output.
|
Modifier and Type | Class and Description |
---|---|
(package private) class |
AbstractHeadProcessor
Base class for the line processors used by the
HeadCommand . |
(package private) class |
HeadCharsProcessor |
(package private) class |
HeadLinesProcessor |
Modifier and Type | Class and Description |
---|---|
(package private) class |
AbstractSortProcessor |
(package private) class |
CheckProcessor
Checks whether a file is sorted or not, throws an
ExitValueException
if the file is not sorted. |
(package private) class |
MergeProcessor |
(package private) class |
SortProcessor
Line processor for normal in-memory sort using an
ArrayList to cache
and sort the lines. |
(package private) class |
UniqueSortProcessor |
Modifier and Type | Class and Description |
---|---|
(package private) class |
AbstractTailProcessor
Base class for the line processors used by the
TailCommand . |
class |
TailCharsFromEndProcessor |
(package private) class |
TailCharsFromStartProcessor |
(package private) class |
TailLinesFromEndProcessor |
(package private) class |
TailLinesFromStartProcessor |
Modifier and Type | Class and Description |
---|---|
(package private) class |
AdjacentProcessor
Line processors implementing the actual uniq command execution for the case
when the
global option is NOT selected. |
static class |
AdjacentProcessor.Count
Line processor implementing the actual uniq command execution for the
case when only the
count option is selected. |
static class |
AdjacentProcessor.DuplicateOnly
Line processor implementing the actual uniq command execution for the
case when only the
duplicatedOnly
option is selected. |
static class |
AdjacentProcessor.Normal
Line processor implementing the actual uniq command execution for the
case when no option is selected.
|
protected static class |
AdjacentProcessor.UniqueDuplicateCount
Abstract base class for member classes
AdjacentProcessor.UniqueOnly ,
AdjacentProcessor.DuplicateOnly and AdjacentProcessor.Count |
static class |
AdjacentProcessor.UniqueOnly
Line processor implementing the actual uniq command execution for the
case when only the
uniqueOnly option is
selected. |
(package private) class |
GlobalProcessor
Line processors implementing the actual uniq command execution for the case
when the
global option is selected. |
static class |
GlobalProcessor.Count
|
static class |
GlobalProcessor.DuplicateOnly
Line processor implementing the actual uniq command execution for the
case when the
global option is selected along
with the duplicatedOnly option. |
static class |
GlobalProcessor.Normal
Line processor implementing the actual uniq command execution for the
case when only the
global option is selected. |
protected static class |
GlobalProcessor.UniqueDuplicateCount
Abstract base class for member classes
GlobalProcessor.UniqueOnly ,
GlobalProcessor.DuplicateOnly and GlobalProcessor.Count |
static class |
GlobalProcessor.UniqueOnly
Line processor implementing the actual uniq command execution for the
case when the
global option is selected along
with the uniqueOnly option. |
(package private) class |
UniqProcessor |
Modifier and Type | Class and Description |
---|---|
(package private) class |
WcProcessor
Standard input processor for line, word and char count.
|
Modifier and Type | Class and Description |
---|---|
(package private) class |
XargsLineProcessor |
Copyright © 2024. All rights reserved.