Package | Description |
---|---|
org.unix4j.unix |
Provides implementations for commands inspired by well known unix commands.
|
org.unix4j.unix.cut |
Contains private classes used by the
cut command. |
Modifier and Type | Method and Description |
---|---|
Unix4jCommandBuilder |
Unix4jCommandBuilder.cut(CutOptions options,
int... indexes)
Cuts the fields or characters using the given indexes
from the input line and writes them to the output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.cut(CutOptions options,
int... indexes) |
R |
Cut.Interface.cut(CutOptions options,
int... indexes)
Cuts the fields or characters using the given indexes
from the input line and writes them to the output.
|
Unix4jCommandBuilder |
Unix4jCommandBuilder.cut(CutOptions options,
Range range)
Cuts the fields or characters using the given range
from the input line and writes them to the output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.cut(CutOptions options,
Range range) |
R |
Cut.Interface.cut(CutOptions options,
Range range)
Cuts the fields or characters using the given range
from the input line and writes them to the output.
|
Unix4jCommandBuilder |
Unix4jCommandBuilder.cut(CutOptions options,
String delimiter,
char outputDelimiter,
int... indexes)
Cuts the fields using the given indexes and using the given delimiter
from the input line and writes them to the output using the given outputDelimiter.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.cut(CutOptions options,
String delimiter,
char outputDelimiter,
int... indexes) |
R |
Cut.Interface.cut(CutOptions options,
String delimiter,
char outputDelimiter,
int... indexes)
Cuts the fields using the given indexes and using the given delimiter
from the input line and writes them to the output using the given outputDelimiter.
|
Unix4jCommandBuilder |
Unix4jCommandBuilder.cut(CutOptions options,
String delimiter,
char outputDelimiter,
Range range)
Cuts the fields using the given range and using the given delimiter
from the input line and writes them to the output using the given outputDelimiter.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.cut(CutOptions options,
String delimiter,
char outputDelimiter,
Range range) |
R |
Cut.Interface.cut(CutOptions options,
String delimiter,
char outputDelimiter,
Range range)
Cuts the fields using the given range and using the given delimiter
from the input line and writes them to the output using the given outputDelimiter.
|
Unix4jCommandBuilder |
Unix4jCommandBuilder.cut(CutOptions options,
String delimiter,
int... indexes)
Cuts the fields using the given indexes
from the input line and writes them to the output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.cut(CutOptions options,
String delimiter,
int... indexes) |
R |
Cut.Interface.cut(CutOptions options,
String delimiter,
int... indexes)
Cuts the fields using the given indexes
from the input line and writes them to the output.
|
Unix4jCommandBuilder |
Unix4jCommandBuilder.cut(CutOptions options,
String delimiter,
Range range)
Cuts the fields using the given range
from the input line and writes them to the output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.cut(CutOptions options,
String delimiter,
Range range) |
R |
Cut.Interface.cut(CutOptions options,
String delimiter,
Range range)
Cuts the fields using the given range
from the input line and writes them to the output.
|
Modifier and Type | Class and Description |
---|---|
class |
CutOption
Options for the
cut command. |
static class |
CutOptions.Default
Default implementation for a modifiable option set.
|
class |
CutOptionSet_cf
|
Modifier and Type | Field and Description |
---|---|
static CutOptions |
CutOptions.EMPTY
Constant for an empty option set.
|
Modifier and Type | Field and Description |
---|---|
static ValueConverter<CutOptions> |
CutOptions.CONVERTER
Value converter for
CutOptions based on an OptionSetConverters.OptionSetConverter . |
Modifier and Type | Method and Description |
---|---|
CutOptions |
CutArguments.getOptions()
Returns the options set containing the selected command options.
|
Modifier and Type | Method and Description |
---|---|
CutCommand |
CutFactory.cut(CutOptions options,
int... indexes) |
CutCommand |
CutFactory.cut(CutOptions options,
Range range) |
CutCommand |
CutFactory.cut(CutOptions options,
String delimiter,
char outputDelimiter,
int... indexes) |
CutCommand |
CutFactory.cut(CutOptions options,
String delimiter,
char outputDelimiter,
Range range) |
CutCommand |
CutFactory.cut(CutOptions options,
String delimiter,
int... indexes) |
CutCommand |
CutFactory.cut(CutOptions options,
String delimiter,
Range range) |
Constructor and Description |
---|
CutArguments(CutOptions options)
Constructor with option set containing the selected command options.
|
Copyright © 2024. All rights reserved.