Skip navigation links
A B C D E F G I J N P Q R S T U V W Y 

A

accept(File, String) - Method in class com.sigio.io.FilenameExtensionFilter
accept(File, String) - Method in class com.sigio.io.FilenamePatternFilter
accept(File) - Method in class com.sigio.sql.DbPropertiesFileFilter
Tests whether or not the specified abstract pathname should be included in a pathname list.
add(String) - Method in class com.sigio.io.FilenameExtensionFilter
Add an extension string to the internal list of extensions.
add(String[]) - Method in class com.sigio.io.FilenameExtensionFilter
Add an array of extension strings to the internal list.
add(Pattern) - Method in class com.sigio.io.FilenamePatternFilter
Add a pre-compiled regular expression pattern to the internal list.
add(Pattern[]) - Method in class com.sigio.io.FilenamePatternFilter
Add an array of pre-compiled regular expression patterns to the internal list.
add(String) - Method in class com.sigio.io.FilenamePatternFilter
Add a regular expression pattern string to the internal list.
add(String, int) - Method in class com.sigio.io.FilenamePatternFilter
Add a regular expression pattern string to the internal list and compile it with an option mask.
add(String[]) - Method in class com.sigio.io.FilenamePatternFilter
Add an array of regular expression pattern strings to the internal list.
add(String[], int) - Method in class com.sigio.io.FilenamePatternFilter
Add an array of regular expression pattern strings to the internal list and compile them with an option mask.
add(String[], int[]) - Method in class com.sigio.io.FilenamePatternFilter
Add an array of regular expression pattern strings to the internal list and compile them with an array of option masks, one for each pattern string.
add(Object) - Method in class com.sigio.json.JSONArray
Appends the specified element to the end of this list.
add(int, Object) - Method in class com.sigio.json.JSONArray
Inserts the specified element at the specified position in this list.
addAll(Collection<? extends Object>) - Method in class com.sigio.json.JSONArray
Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's Iterator.
addAll(int, Collection<? extends Object>) - Method in class com.sigio.json.JSONArray
Inserts all of the elements in the specified collection into this list, starting at the specified position.
allowsReverseTransformation() - Method in class com.sigio.util.FahrenheitToCentigradeValueTransformer
Returns true if the instance can do a reverse transformation.
allowsReverseTransformation() - Method in class com.sigio.util.InchToMillimeterValueTransformer
Returns true if the instance can do a reverse transformation.
allowsReverseTransformation() - Method in class com.sigio.util.ValueTransformer
Returns true if the instance can do a reverse transformation.
allowsReverseTransformation() - Method in class com.sigio.util.YardToMeterValueTransformer
Returns true if the instance can do a reverse transformation.

B

BEGIN_ARRAY - Static variable in class com.sigio.json.JSON
Character that opens a JSON array sequence.
BEGIN_OBJECT - Static variable in class com.sigio.json.JSON
Character that opens a JSON object sequence.

C

com.sigio.games.dice - package com.sigio.games.dice
A collection of classes to simulate dice.
com.sigio.io - package com.sigio.io
A collection of classes to provide input and output functionality.
com.sigio.json - package com.sigio.json
A collection of classes to read and write JSON data.
com.sigio.sql - package com.sigio.sql
A collection of classes useful for JDBC and database programming.
com.sigio.util - package com.sigio.util
Provides a loose collection of utility classes that perform various auxillary roles in programming, including containers for certain types of formatted data and value transformation from one object type to another.

D

DbPropertiesFileFilter - Class in com.sigio.sql
FileFilter implementation to check for JDBC database properties files.
DbPropertiesFileFilter() - Constructor for class com.sigio.sql.DbPropertiesFileFilter
Construct a DbPropertiesFileFilter without an extensions list.
DbPropertiesFileFilter(String[]) - Constructor for class com.sigio.sql.DbPropertiesFileFilter
Construct a DbPropertiesFileFilter with a list of extensions that the filename must have in order to be considered a valid properties file.
DbPropertiesFileFilter(Collection<String>) - Constructor for class com.sigio.sql.DbPropertiesFileFilter
Construct a DbPropertiesFileFilter with a list of extensions that the filename must have in order to be considered a valid properties file.
Die - Class in com.sigio.games.dice
This class simulates dice of various sizes for use in game programming.
Die(int) - Constructor for class com.sigio.games.dice.Die
Creates a new Die object with s number of sides.
Die() - Constructor for class com.sigio.games.dice.Die
Creates a new Die object with the default number (6) of sides.
DoublingDie - Class in com.sigio.games.dice
Simulates a doubling die as used in backgammon and other games.
DoublingDie(int) - Constructor for class com.sigio.games.dice.DoublingDie
Creates a new DoublingDie object with s number of sides.
DoublingDie() - Constructor for class com.sigio.games.dice.DoublingDie
Creates a DoublingDie instance with the default number of sides (6).

E

END_ARRAY - Static variable in class com.sigio.json.JSON
Character that closes a JSON array sequence.
END_OBJECT - Static variable in class com.sigio.json.JSON
Character that closes a JSON object sequence.
EOF - Static variable in class com.sigio.json.JSONReader
A special Character constant to return if the reader hits EOF.
equals(String) - Method in enum com.sigio.json.JSONLiteral
Check if a passed in string matches the literal's value.
ESCAPE_CHAR - Static variable in class com.sigio.json.JSON
Character that escapes special characters.

F

FahrenheitToCentigradeValueTransformer - Class in com.sigio.util
A Double value transformer to convert temperatures from Fahrenheit to Centigrade and to do the reverse.
FahrenheitToCentigradeValueTransformer() - Constructor for class com.sigio.util.FahrenheitToCentigradeValueTransformer
 
FilenameExtensionFilter - Class in com.sigio.io
A FilenameFilter implementation that filters files based on a list of file extensions.
FilenameExtensionFilter() - Constructor for class com.sigio.io.FilenameExtensionFilter
Construct a FilenameExtensionFilter with an empty extension list.
FilenameExtensionFilter(Collection<String>) - Constructor for class com.sigio.io.FilenameExtensionFilter
Construct a FilenameExtensionFilter with a collection of extensions.
FilenameExtensionFilter(String[]) - Constructor for class com.sigio.io.FilenameExtensionFilter
Construct a FilenamExtensionFilter with an array of extensions.
FilenamePatternFilter - Class in com.sigio.io
A FilenameFilter implementation that filters filenames that match regular expression patterns stored in an internal list.
FilenamePatternFilter() - Constructor for class com.sigio.io.FilenamePatternFilter
Construct a FilenamePatternFilter with an empty regular expression pattern list.
FilenamePatternFilter(Collection<Pattern>) - Constructor for class com.sigio.io.FilenamePatternFilter
Construct a FilenamePatternFilter with a collection of pre-compiled regular expression patterns.
FilenamePatternFilter(Pattern) - Constructor for class com.sigio.io.FilenamePatternFilter
Construct a FilenamePatternFilter with a single pre-compiled regular expression pattern.
FilenamePatternFilter(Pattern[]) - Constructor for class com.sigio.io.FilenamePatternFilter
Construct a FilenamePatternFilter with an array of pre-compiled regular expression patterns.
FilenamePatternFilter(String) - Constructor for class com.sigio.io.FilenamePatternFilter
Construct a FilenamePatternFilter with a regular expression pattern string.
FilenamePatternFilter(String, int) - Constructor for class com.sigio.io.FilenamePatternFilter
Construct a FilenamePatternFilter with a regular expression pattern string, and an option mask for the regular expression compiler.
FilenamePatternFilter(String[]) - Constructor for class com.sigio.io.FilenamePatternFilter
Construct a FilenamePatternFilter with an array of regular expression pattern strings.
FilenamePatternFilter(String[], int) - Constructor for class com.sigio.io.FilenamePatternFilter
Construct a FilenamePatternFilter with an array of regular expression pattern strings and an option mask for the regular expression compiler.
FilenamePatternFilter(String[], int[]) - Constructor for class com.sigio.io.FilenamePatternFilter
Construct a FilenamePatternFilter with an array of regular expression pattern strings and an array of option masks for the regular expression compiler.
fromString(String) - Static method in enum com.sigio.json.JSONLiteral
Get a JSONLiteral from a string.

G

getColumnClass(int) - Method in class com.sigio.sql.ResultSetTableModel
Get the object class represented by a table model column.
getColumnCount() - Method in class com.sigio.sql.ResultSetTableModel
Get the number of columns in the model.
getColumnName(int) - Method in class com.sigio.sql.ResultSetTableModel
Get the name of a given column.
getRowCount() - Method in class com.sigio.sql.ResultSetTableModel
Get the number of rows in the model.
getSides() - Method in class com.sigio.games.dice.Die
Returns the number of sides in a class instance.
getValueAt(int, int) - Method in class com.sigio.sql.ResultSetTableModel
Get the object stored in a given cell.

I

InchToMillimeterValueTransformer - Class in com.sigio.util
A double value transformer to convert inch values to millimeters and vice versa.
InchToMillimeterValueTransformer() - Constructor for class com.sigio.util.InchToMillimeterValueTransformer
 
isAssignableFrom(Class<?>) - Static method in enum com.sigio.json.JSONValue
Check if a Class can be used as a JSON value.
isCellEditable(int, int) - Method in class com.sigio.sql.ResultSetTableModel
Check if a given cell is editable.
isInstance(Object) - Static method in enum com.sigio.json.JSONValue
Check if an instantiated object is a valid JSON value.
isNumber(String) - Static method in class com.sigio.json.JSON
Check if a string represents a number according to RFC4627.
isWhiteSpace(int) - Static method in class com.sigio.json.JSON
Check if a character is whitespace according to the standard.

J

JSON - Class in com.sigio.json
JSON character constants and character utility routines based on RFC4627.
JSONArray - Class in com.sigio.json
Class to implement a JSON array as defined in RFC4627.
JSONArray() - Constructor for class com.sigio.json.JSONArray
Construct a default JSONArray.
JSONArray(Collection<Object>) - Constructor for class com.sigio.json.JSONArray
Construct a JSONArray and fill it with object from a collection.
JSONArray(int) - Constructor for class com.sigio.json.JSONArray
Construct a JSONArray with an initial size
JSONException - Exception in com.sigio.json
Special class for our own JSON exceptions.
JSONException() - Constructor for exception com.sigio.json.JSONException
Constructs a new exception with null as its detail message.
JSONException(String) - Constructor for exception com.sigio.json.JSONException
Constructs a new exception with the specified detail message.
JSONException(String, Throwable) - Constructor for exception com.sigio.json.JSONException
Constructs a new exception with the specified detail message and cause.
JSONException(Throwable) - Constructor for exception com.sigio.json.JSONException
Constructs a new exception with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).
JSONLiteral - Enum in com.sigio.json
Enum for the allowed JSON literals as defined in RFC4627.
JSONObject - Class in com.sigio.json
Class to implement a JSON object as defined in RFC4627.
JSONObject() - Constructor for class com.sigio.json.JSONObject
Construct an empty JSONObject with a default initial capacity and load factor.
JSONObject(int) - Constructor for class com.sigio.json.JSONObject
Construct a JSONObject with an initial capacity and default load factor.
JSONObject(int, float) - Constructor for class com.sigio.json.JSONObject
Constructs a JSONObject with an initial capacity and load factor.
JSONObject(Map<? extends String, ? extends Object>) - Constructor for class com.sigio.json.JSONObject
Construct a JSONObject from an existing map of objects.
JSONReader - Class in com.sigio.json
Reader subclass to read JSON data and create JSON objects.
JSONReader(Reader) - Constructor for class com.sigio.json.JSONReader
Create a new JSONReader with a default pushback buffer.
JSONReader(Reader, int) - Constructor for class com.sigio.json.JSONReader
Create a new JSONReader with a specified Pushback buffer size.
JSONValue - Enum in com.sigio.json
Enum of valid java classes for JSON values.
JSONWriter - Class in com.sigio.json
Writer class to write certain java objects as JSON value strings.
JSONWriter(Writer) - Constructor for class com.sigio.json.JSONWriter
Construct a new JSONWriter.

N

NAME_SEPARATOR - Static variable in class com.sigio.json.JSON
Character that separates an object field name from the value.

P

peek() - Method in class com.sigio.json.JSONReader
A special method to take advantage of the features of our parent PushbackWriter.
put(String, Object) - Method in class com.sigio.json.JSONObject
Associates the specified value with the specified key in this object.
putAll(Map<? extends String, ? extends Object>) - Method in class com.sigio.json.JSONObject
Copies all of the mappings from the specified map to this map.

Q

QUOTE_CHAR - Static variable in class com.sigio.json.JSON
Character that opens and closes JSON strings.

R

read() - Method in class com.sigio.json.JSONReader
Reads a single character.
read(char[], int, int) - Method in class com.sigio.json.JSONReader
Reads characters into a portion of an array.
readValue() - Method in class com.sigio.json.JSONReader
Specialized read method to read JSON objects from the input data.
remove(String) - Method in class com.sigio.io.FilenameExtensionFilter
Remove an extension from the internal list.
remove(String[]) - Method in class com.sigio.io.FilenameExtensionFilter
Remove an array of extensions from the internal list.
remove(Pattern) - Method in class com.sigio.io.FilenamePatternFilter
Remove a pre-compiled regular expression pattern from the internal list.
remove(Pattern[]) - Method in class com.sigio.io.FilenamePatternFilter
Remove an array of pre-compiled regular expression patterns from the internal list.
ResultSetTableModel - Class in com.sigio.sql
A class to implement a Swing AbstractTableModel that can be used to display a ResultSet in a JTable.
ResultSetTableModel() - Constructor for class com.sigio.sql.ResultSetTableModel
Simple constructor.
ResultSetTableModel(ResultSet) - Constructor for class com.sigio.sql.ResultSetTableModel
Construct a ResultSetTableModel with an existing ResultSet.
reverseTransformValue(Double) - Method in class com.sigio.util.FahrenheitToCentigradeValueTransformer
Transforms a Double with an assumed value of degrees Centigrade into a Double with a value in degrees Fahrenheit.
reverseTransformValue(Double) - Method in class com.sigio.util.InchToMillimeterValueTransformer
Transforms a Double with an assumed value in millimeters into a Double with a value in inches.
reverseTransformValue(T) - Method in class com.sigio.util.ValueTransformer
Performs a reverse transformation.
reverseTransformValue(Double) - Method in class com.sigio.util.YardToMeterValueTransformer
Transforms a Double instance with an assumed value in meters to a Double with a value in yards.
roll(int) - Method in class com.sigio.games.dice.Die
Simulates rolling a number of dice with a number of sides represented by this instance.
roll() - Method in class com.sigio.games.dice.Die
Simulates rolling a single die.
roll(int) - Method in class com.sigio.games.dice.DoublingDie
Simulates rolling a number of doubling dice with a number of sides represented by this instance.

S

set(int, Object) - Method in class com.sigio.json.JSONArray
Replaces the element at the specified position in this list with the specified element.
setResultSet(ResultSet) - Method in class com.sigio.sql.ResultSetTableModel
Set or change the result set used for the model.
setSides(int) - Method in class com.sigio.games.dice.Die
Accessor to set the number of sides in a class instance.
setValueAt(Object, int, int) - Method in class com.sigio.sql.ResultSetTableModel
Set the object stored in a given cell.

T

toString() - Method in class com.sigio.games.dice.Die
 
toString() - Method in enum com.sigio.json.JSONLiteral
Returns a string representation of the object.
toString() - Method in enum com.sigio.json.JSONValue
Returns a string representation of the object.
transformValue(Double) - Method in class com.sigio.util.FahrenheitToCentigradeValueTransformer
Transforms a Double with an assumed value of degrees Fahrenheit into a Double with a value in degrees Centrigrade.
transformValue(Double) - Method in class com.sigio.util.InchToMillimeterValueTransformer
Transforms a Double with an assumed value in inches to a Double with a value in millimeters.
transformValue(T) - Method in class com.sigio.util.ValueTransformer
Transforms an object's value.
transformValue(Double) - Method in class com.sigio.util.YardToMeterValueTransformer
Transforms a Double instance with an assumed value in yards to a Double with a value in meters.

U

unread(int) - Method in class com.sigio.json.JSONReader
Pushes back a single character by copying it to the front of the pushback buffer.
unread(char[], int, int) - Method in class com.sigio.json.JSONReader
Pushes back a portion of an array of characters by copying it to the front of the pushback buffer.
unread(char[]) - Method in class com.sigio.json.JSONReader
Pushes back an array of characters by copying it to the front of the pushback buffer.

V

value() - Method in enum com.sigio.json.JSONLiteral
Get our literal value.
VALUE_SEPARATOR - Static variable in class com.sigio.json.JSON
Character that separates fields in an array or object.
valueClass() - Method in enum com.sigio.json.JSONValue
Accessor for the class member.
valueOf(String) - Static method in enum com.sigio.json.JSONLiteral
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.sigio.json.JSONValue
Returns the enum constant of this type with the specified name.
values() - Static method in enum com.sigio.json.JSONLiteral
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.sigio.json.JSONValue
Returns an array containing the constants of this enum type, in the order they are declared.
ValueTransformer<T> - Class in com.sigio.util
Abstract class to provide a base for other value transformer implementations.
ValueTransformer() - Constructor for class com.sigio.util.ValueTransformer
 

W

WHITESPACE - Static variable in class com.sigio.json.JSON
Array of whitespace characters in a JSON format.
write(Object) - Method in class com.sigio.json.JSONWriter
Write a java object as a JSON value string.
write(String) - Method in class com.sigio.json.JSONWriter
Writes a string as a JSON string.
write(String, int, int) - Method in class com.sigio.json.JSONWriter
Writes a portion of a string as a JSON string.

Y

YardToMeterValueTransformer - Class in com.sigio.util
A double value transformer to convert yard values to meters and vice versa.
YardToMeterValueTransformer() - Constructor for class com.sigio.util.YardToMeterValueTransformer
 
A B C D E F G I J N P Q R S T U V W Y 
Skip navigation links