Package org.marketcetera.util.file
Interface SpecialNames
-
public interface SpecialNamesSpecial names used to denote standard streams or operations on regular files.- Since:
- 0.5.0
- Version:
- $Id: SpecialNames.java 16154 2012-07-14 16:34:05Z colin $
- Author:
- tlerios@marketcetera.com
-
-
Field Summary
Fields Modifier and Type Field Description static StringPREFIX_APPENDWhen this prefix appears in front of an output file name, it indicates that new data must be appended to the end of the file, instead of overwriting existing data.static StringSTANDARD_ERRORThe standard error stream.static StringSTANDARD_INPUTThe standard input stream.static StringSTANDARD_OUTPUTThe standard output stream.
-
-
-
Field Detail
-
STANDARD_INPUT
static final String STANDARD_INPUT
The standard input stream.- See Also:
- Constant Field Values
-
STANDARD_OUTPUT
static final String STANDARD_OUTPUT
The standard output stream.- See Also:
- Constant Field Values
-
STANDARD_ERROR
static final String STANDARD_ERROR
The standard error stream.- See Also:
- Constant Field Values
-
PREFIX_APPEND
static final String PREFIX_APPEND
When this prefix appears in front of an output file name, it indicates that new data must be appended to the end of the file, instead of overwriting existing data.- See Also:
- Constant Field Values
-
-