org.marketcetera.util.file
Interface SpecialNames


public interface SpecialNames

Special 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
static 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.
static String STANDARD_ERROR
          The standard error stream.
static String STANDARD_INPUT
          The standard input stream.
static String STANDARD_OUTPUT
          The 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


Copyright © 2012. All Rights Reserved.