Package Torello.Java.Additional
More Updated Java Classes. Classes for returning multiple-
Object's
from a single
method-invocation. There is also a Variable Return Type Class Definition, and an LRU
implementation.-
Classes Java Entity Description Counter An extremely basic'Counter'
class that is used to help alleviate Java's stringent'Effectively Final'
requirement for lambda-expressionsEffectivelyFinal<A> Another extremely simple class that can help avoidEffectively Final
Java Compiler warningsLRUTreeMap<K,V> A great class, heavily used by the Java Doc Upgrader Tool, that extends Java'sTreeMap
class to eliminate "Least Recently Used" elements from the Map, effectively creating an'in-memory cache'
for the toolRemoveUnsupportedIterator<E> This functions identically to the normalIterator<E>
class, but preventsIterator.remove()
from ever being invokedLog-Appendable Helpers Java Entity Description AppendableLog Another Logging-Helper classAppendableSafe Identical to classjava
AppendableTap An implementation of the standard Java'Appendable'
interface that keeps an internal log of all text-data that 'passes through' theAppendable
BiAppendable Builds a compositejava
TriAppendable Builds a compositejava
NOPRINT This class is used to shunt text-output sent to a JavaAppendable
; note that thisAppendable
can be tapped, allowing for saving text-output, without printing itEasy JSON Binding (Helpers) Java Entity Description ReadJSON Utilities that build on the J2EE Standard Release JSON Parsing Tool providing additional help with converting JSON Data into Java Data TypesReadJSON.XL More utilities for parsing and converting JSON Data into Java Data TypesJFlag Exception-Flags that may be passed to theReadJSON
methods which accept a'FLAGS'
parameterRJInternal ReadArrJSON Utilities for parsing Json Array's into Java Array'sReadArrJSON.DimN Parses Multi-Dimensional JSON Array's into Java Array'sWriteJSON Generates JSON Requests from lists of Parameter-Names, Parameter-Types and Parameter-ValuesBaseType This class may be used to help serialize Java Objects into Json ObjectsHeadless Browser Helpers Java Entity Description Promise<RESPONSE,RESULT> A promise keeps the processing logic for converting a response from an asychronous connection into a result that the end-user can utilizeScript<INPUT,RESPONSE,RESULT> The class script simply sends an asynchronous request, and returns an instance ofPromise
which may be awaitedSender<INPUT> This functional-interface should have the code/logic for sending an'INPUT'
message or request to the asynchronous I/O system/channelMultiple Class Return (Tuples) Java Entity Description RetN This is a parent class of the 'Multiple Return Type' classesRet0 Contains astatic
reference to a singleton-instance ofRet0
Ret1<A> This simple generic-class exists mainly for the case where a function or type-parameter needs to return a class that inheritsRetN
, but only has one return-valueRet2<A,B> This simple generic-class allows a function to return two objects as a result, instead of just oneRet3<A,B,C> This simple generic-class allows a function to return three objects as a result, instead of just oneRet4<A,B,C,D> This simple generic-class allows a function to return four objects as a result, instead of just oneRet5<A,B,C,D,E> This simple generic-class allows a function to return five objects as a result, instead of just oneRet6<A1,B2,C3,D4,E5,F6> This simple generic-class allows a function to return six objects as a result, instead of just oneRet7<A1,B2,C3,D4,E5,F6,G7> This simple generic-class allows a function to return seven objects as a result, instead of just oneRet8<A1,B2,C3,D4,E5,F6,G7,H8> This simple generic-class allows a function to return eight objects as a result, instead of just oneVariable Class Return Java Entity Description VarList<LIST,CONTENTS> Implementation of theFileNode
class'RetTypeChoice'
VarListBuilder<CONTENTS> Implementation of theFileNode
class'RetTypeChoice'
VarListBuilderWithApply<ORIGINAL,TRANSFORMED> Implementation of theFileNode
class'RetTypeChoice'
VarListBuilderWithApplyAndSort<ORIGINAL,TRANSFORMED> Implementation of theFileNode
class'RetTypeChoice'
VarListBuilderWithSort<CONTENTS> Implementation of theFileNode
class'RetTypeChoice'
VarListBuilderWithSortAndApply<ORIGINAL,TRANSFORMED> Implementation of theFileNode
class'RetTypeChoice'
OSCommands Thread-Helpers Java Entity Description Completed A helper-class that performsThread
-managment for the classISPT A helper class performingThread
management for classOSResponse
Exceptions Java Entity Description AsynchronousException A general purpose exception used to indicate there have been problems with an asynchronous communications system or channelReadJSON Exceptions Java Entity Description JsonBindingException The parent class of all Json Exceptions in this packageJsonBindingArrException The parent class of all Json Binding Exceptions that are used forJsonArray
element retrieval errorsJsonBindingObjException The parent class of all Json Binding Exceptions that are used forJsonObject
property retrieval errorsJsonPropMissingException Used to indicate that therw was a property within aJsonObject
that wasn't actually identified during the Json ParseJsonArithmeticArrException Used to indicate that one of the elements within aJsonArray
caused a JavaArithmeticException
to throw when attempting to bind the element to a Java Number TypeJsonArithmeticObjException Used to indicate that one of the properties within aJsonObject
caused a JavaArithmeticException
to throw when attempting to bind the property to a Java Number TypeJsonTypeArrException Used to indicate that one of the indices within aJsonArray
contained a different type than was requested / expected by the readerJsonTypeObjException Used to indicate that one of the properties within aJsonObject
contained a different type than was requested / expected by the readerJsonNullArrException Used to indicate that one of the elements within aJsonArray
contained Json Null, when it was expected to contain a valid Json-TypeJsonNullObjException Used to indicate that one of the properties within aJsonObject
contained Json-Null, when it was expected to contain a valid Json-TypeJsonNullPrimitiveArrException Used to indicate that one of the indices within aJsonArray
contained null, where a valid primitive-value was expectedJsonNullPrimitiveObjException Used to indicate that one of the properties within aJsonObject
contained null, where a valid primitive-value was expectedJsonStrParseArrException Used to indicate that a specificJsonString
within aJsonObject
orJsonArray
was not properly parsed into a target Java-TypeJsonStrParseObjException Used to indicate that a specificJsonString
within aJsonObject
orJsonArray
was not properly parsed into a target Java-TypeErrors Java Entity Description AppendableError Ajava