Package cdx.scorebot.util.translator

Contains classes which define translations between one type and another.

See:
          Description

Class Summary
SelfTranslator<TYPE> This translator does not do any translation; it just passes values through.
TranslatorBooleanString Stores a value as a String and can translate to and from an Boolean.
TranslatorDoubleString Stores a value as a String and can translate to and from an Double.
TranslatorIdentifierString Stores a value as a String which meets the requirements as an identifier.
TranslatorInstanceString<T> Can translate to an Object of type T from a string.
TranslatorIntegerString Stores a value as a String and can translate to and from an Integer.
TranslatorMulti<FROM,TO> Can translate between two objects using different translaters depending on what type the two objects actually are.
TranslatorObjectClassName<T> Can translate to an Object of type T from a string.
TranslatorTimeString Stores a value as a Integer and can translate to and from an String.
TypeTranslator<TYPE1,TYPE2> Declares translation methods a parameter must have so it can be translated between a one type and another type.
 

Exception Summary
TranslationFailedException Indicates a translation could not be accomplished
 

Package cdx.scorebot.util.translator Description

Contains classes which define translations between one type and another.