Package org.svetovid
Class Svetovid
java.lang.Object
org.svetovid.Svetovid
This is a utility class that serves as an easy access point to various
functionalities of Svetovid library.
The main functionalities provided are readers and writers for standard input
and output streams and file access, as well as graphical user interface
message boxes and dialogs.
- Author:
- Ivan Pribela
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final booleanBy default, all writers will not flush automatically.static final StringDefault encoding is Unicode UTF-8.static StandardSvetovidErrorWriterThe "standard" error output.static final AutoCloseDialogFactoryThe graphical user interface factory used to create and show message and dialog boxes.static StandardSvetovidReaderThe "standard" input.static final LocaleDefault locale is US English.static final StringString that is used to substitute null value.static StandardSvetovidWriterThe "standard" output.static final booleanBy default, all readers and writers are not throwing exceptions.static final StringDefault token separator is a single space character.static final PatternDefault pattern for matching whitespace is same as in Java programming language. -
Method Summary
Modifier and TypeMethodDescriptionstatic SvetovidWriterThe output writer that will append data to the given target.static SvetovidReaderclose(SvetovidReader reader) Closes the given reader and releases any resources associated with the underlying source.static SvetovidWriterclose(SvetovidWriter writer) Closes the given writer and releases any resources associated with the underlying target.static SvetovidReaderCloses the reader (if any) and releases any resources associated with the given source.static SvetovidWriterCloses the writer (if any) and releases any resources associated with the given target.static Versionstatic Stringstatic SvetovidReaderThe input reader for the given source.static SvetovidWriterThe output writer for the given target.static SvetovidWriterThe output writer that will optionally append data to the given target.static booleantestAppend(String target) Checks whether the data can be appended to the given target.static booleanChecks whether the given source can be used for input.static booleanChecks whether the given target can be used for output.static booleanChecks whether the given target can be used for output.
-
Field Details
-
CHARSET_NAME
Default encoding is Unicode UTF-8.- See Also:
-
LOCALE
Default locale is US English. -
WHITESPACE_PATTERN
Default pattern for matching whitespace is same as in Java programming language. -
WHITESPACE
Default token separator is a single space character.- See Also:
-
NULL_STRING
String that is used to substitute null value.- See Also:
-
AUTO_FLUSH
public static final boolean AUTO_FLUSHBy default, all writers will not flush automatically.- See Also:
-
THROW_EXCEPTIONS
public static final boolean THROW_EXCEPTIONSBy default, all readers and writers are not throwing exceptions.- See Also:
-
in
The "standard" input. This reader is already open and ready to supply input data. Typically this stream corresponds to keyboard input or another input source specified by the host environment or user. -
out
The "standard" output. This writer is already open and ready to accept output data. Typically this stream corresponds to display output or another output destination specified by the host environment or user. -
err
The "standard" error output. This writer is already open and ready to accept output data. Typically this stream corresponds to display output or another output destination specified by the host environment or user. By convention, this output stream is used to display error messages or other information that should come to the immediate attention of a user even if the principal output stream, the value of the variableout, has been redirected to a file or other destination that is typically not continuously monitored. -
gui
The graphical user interface factory used to create and show message and dialog boxes.
-
-
Method Details
-
testIn
Checks whether the given source can be used for input.- Parameters:
source- a string describing the source- Returns:
trueif the given source can be read;falseotherwise.
-
in
The input reader for the given source. The returned reader is already open and ready to supply input data. If the supplied source string is a file name, the returned reader will correspond to that file. If the source is a URL the reader will read the resource identified by that URL. If the source is null, the returned reader will correspond to the standard input stream. Otherwise, an exception will be thrown.- Parameters:
source- a string describing the source- Returns:
- a
SvetovidReaderthat can be used to read from the desired source. - Throws:
SvetovidIOException- if the reader cannot be created for the given source or an error occurred during the operation.
-
closeIn
Closes the reader (if any) and releases any resources associated with the given source.- Parameters:
source- the source for which to close the reader- Returns:
- the closed reader.
- Throws:
SvetovidIOException- if an error occurred during the operation.
-
close
Closes the given reader and releases any resources associated with the underlying source. SeeSvetovidReader.close()for details.- Parameters:
reader- the reader to close- Returns:
- the closed reader.
- Throws:
SvetovidIOException- if an error occurred during the operation.
-
testOut
Checks whether the given target can be used for output.- Parameters:
target- a string describing the target- Returns:
trueif it is possible to write to the given target;falseotherwise.
-
testAppend
Checks whether the data can be appended to the given target.- Parameters:
target- a string describing the target- Returns:
trueif it is possible to append data to the given target;falseotherwise.
-
testOut
Checks whether the given target can be used for output.- Parameters:
target- a string describing the targetappend-trueto check if the data can be appended to the target;falseto check if the data can be overwritten- Returns:
trueif it is possible to write to the given target;falseotherwise.
-
out
The output writer for the given target. The returned writer is already open and ready to accept output data. If the supplied target string is a file name, the returned writer will correspond to that file. If the target is null, the returned writer will correspond to the standard output stream. Otherwise, an exception will be thrown.- Parameters:
target- a string describing the writter's target- Returns:
- a
SvetovidWriterthat can be used to write to the desired target.
-
append
The output writer that will append data to the given target. The returned writer is already open and ready to accept output data. If the supplied target string is a file name, the returned writer will correspond to that file. If the target is null, the returned writer will correspond to the standard output stream. Otherwise, an exception will be thrown.- Parameters:
target- a string describing the writter's target- Returns:
- a
SvetovidWriterthat can be used to write to the desired target.
-
out
The output writer that will optionally append data to the given target. The returned writer is already open and ready to accept output data. If the supplied target string is a file name, the returned writer will correspond to that file. If the target is null, the returned writer will correspond to the standard output stream. Otherwise, an exception will be thrown.- Parameters:
target- a string describing the writter's targetappend- should the data be appended to the given target or not- Returns:
- a
SvetovidWriterthat can be used to write to the desired target. - Throws:
SvetovidIOException- if the writer cannot be created for the given target or an error occurred during the operation.
-
closeOut
Closes the writer (if any) and releases any resources associated with the given target.- Parameters:
target- the target for which to close the writer- Returns:
- the closed writer.
- Throws:
SvetovidIOException- if an error occurred during the operation.
-
close
Closes the given writer and releases any resources associated with the underlying target. SeeSvetovidWriter.close()for details.- Parameters:
writer- the writer to close- Returns:
- the closed writer.
- Throws:
SvetovidIOException- if an error occurred during the operation.
-
getVersionString
-
getVersion
-
getLibraryReleases
-