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 'n Stuff Java Entity Description ByRef<A> A simple wrapper class for passing variables by-reference to methods callsCounter 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 toolMIME A silly class that serves as a reminder of all the web-formats that have been tried since the internet was inventedRemoveUnsupportedIterator<E> This functions identically to the normalIterator<E>
class, but preventsIterator.remove()
from ever being invokedURLs A class that plays-with URL's, no more, no lessAppendable-Logging Tools 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 itHeadless Browser Helper 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/channelAbstract Root Tuple Java Entity Description MultiType This is a parent class of the 'Multiple Return Type' classesRead-Only Tuples (Multi-Return) Java Entity Description RetN This is the 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 oneRead-Write Tuples Java Entity Description TupleN This is a parent class of the Tuple classesTuple0 Contains astatic
reference to a singleton-instance ofTuple0
Tuple1<A> The classesTuple1
andTuple0
are here merely for the convenience and the possibility that an unknown sized tuple might be needed, and on occasion that unknown sized reference would contain only one (or even zero) elementsTuple2<A,B> This simple generic-class allows for storing two objects with a single referenceTuple3<A,B,C> This simple generic-class allows for storing three objects with a single referenceTuple4<A,B,C,D> This simple generic-class allows for storing four objects with a single referenceTuple5<A,B,C,D,E> This simple generic-class allows for storing five objects with a single referenceTuple6<A1,B2,C3,D4,E5,F6> This simple generic-class allows for storing six objects with a single referenceTuple7<A1,B2,C3,D4,E5,F6,G7> This simple generic-class allows for storing seven objects with a single referenceTuple8<A1,B2,C3,D4,E5,F6,G7,H8> This simple generic-class allows for storing eight objects with a single referenceExceptions Java Entity Description AsynchronousException A general purpose exception used to indicate there have been problems with an asynchronous communications system or channelErrors Java Entity Description AppendableError Ajava