| Package | Description |
|---|---|
| org.unix4j |
Provides a single class
Unix4j with static methods
serving as entry point to build commands and command chains joining several
commands. |
| org.unix4j.builder |
Defines interfaces and implementations used to create a command or a chain of
joined commands.
|
| org.unix4j.unix |
Provides implementations for commands inspired by well known unix commands.
|
| org.unix4j.unix.echo |
Contains private classes used by the
echo command. |
| Modifier and Type | Method and Description |
|---|---|
static Unix4jCommandBuilder |
Unix4j.echo(EchoOptions options,
String... strings)
Writes any of the specified strings, separated by single blank
(
' ') characters to the standard output suppressing the
trailing line ending if the -n option is specified. |
static Unix4jCommandBuilder |
Unix4j.echo(EchoOptions options,
String string)
Writes the specified string followed by a newline character to
the standard output suppressing the trailing line ending if the
-n option is specified. |
| Modifier and Type | Method and Description |
|---|---|
Unix4jCommandBuilder |
Unix4jCommandBuilder.echo(EchoOptions options,
String... strings)
Writes any of the specified strings, separated by single blank
(
' ') characters to the standard output suppressing the
trailing line ending if the -n option is specified. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.echo(EchoOptions options,
String... strings) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.echo(EchoOptions options,
String string)
Writes the specified string followed by a newline character to
the standard output suppressing the trailing line ending if the
-n option is specified. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.echo(EchoOptions options,
String string) |
| Modifier and Type | Method and Description |
|---|---|
R |
Echo.Interface.echo(EchoOptions options,
String... strings)
Writes any of the specified strings, separated by single blank
(
' ') characters to the standard output suppressing the
trailing line ending if the -n option is specified. |
R |
Echo.Interface.echo(EchoOptions options,
String string)
Writes the specified string followed by a newline character to
the standard output suppressing the trailing line ending if the
-n option is specified. |
| Modifier and Type | Class and Description |
|---|---|
class |
EchoOption
Options for the
echo command. |
static class |
EchoOptions.Default
Default implementation for a modifiable option set.
|
class |
EchoOptionSet_n
|
| Modifier and Type | Field and Description |
|---|---|
static EchoOptions |
EchoOptions.EMPTY
Constant for an empty option set.
|
| Modifier and Type | Field and Description |
|---|---|
static ValueConverter<EchoOptions> |
EchoOptions.CONVERTER
Value converter for
EchoOptions based on an OptionSetConverters.OptionSetConverter. |
| Modifier and Type | Method and Description |
|---|---|
EchoOptions |
EchoArguments.getOptions()
Returns the options set containing the selected command options.
|
| Modifier and Type | Method and Description |
|---|---|
EchoCommand |
EchoFactory.echo(EchoOptions options,
String... strings) |
EchoCommand |
EchoFactory.echo(EchoOptions options,
String string) |
| Constructor and Description |
|---|
EchoArguments(EchoOptions options)
Constructor with option set containing the selected command options.
|
Copyright © 2017. All Rights Reserved.