Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.scopemvc.util.convertor: Javadoc index of package org.scopemvc.util.convertor.


Package Samples:

org.scopemvc.util.convertor: Utility classes that include two main areas of interest to application developers: ScopeConfig for configuring the Scope framework, and UIStrings used to look up user-readable Strings from localised resources.  

Classes:

DateStringConvertor: String convertor for type java.util.Date . The Time part of Date instances are ignored. See DateTimeStringConvertor and TimeStringConvertor . It uses one java.text.DateFormat for converting into String and set of DateFormat s for parsing. Parsing formats are successively used to try to parse until one is successful. Formats are picked up from config (see org.scopemvc.util.DefaultScopeConfig for details) or if none in config, the default formatter is: DateFormat.getDateInstance(DateFormat.MEDIUM) and default parsers are: DateFormat.getDateInstance(DateFormat.FULL); DateFormat.getDateInstance(DateFormat.LONG); ...
TimeStringConvertor: String convertor for type org.scopemvc.util.Time or java.util.Date . Date part of Date instances are ignored. It uses one java.text.DateFormat DateFormat for converting into String and an array of DateFormat s for parsing. Parsing formats are successively used to try to parse until one is successful. Formats are picked up from config (see org.scopemvc.util.DefaultScopeConfig for details) or if none in config, the default formatter is: DateFormat.getTimeInstance(DateFormat.MEDIUM) and default parsers are: DateFormat.getTimeInstance(DateFormat.FULL); DateFormat.getTimeInstance(DateFormat.LONG); DateFormat.getTimeInstance(DateFormat.MEDIUM); ...
DateTimeStringConvertor: String convertor for type org.scopemvc.util.DateTime or java.util.Date . Both date and time parts of Date instances are used. It uses one java.text.DateFormat DateFormat for converting into String and an array of DateFormat s for parsing. Parsing formats are successively used to try to parse until one is successful. Formats are picked up from config (see org.scopemvc.util.DefaultScopeConfig for details) or if none in config, the default formatter is: DateFormat.getDateTimeInstance() and default parsers are: DateFormat.getDateTimeInstance((FULL|LONG|MEDIUM|SHORT), (FULL|LONG|MEDIUM|SHORT)); Note: ...
StringStringConvertor: String convertor for type java.lang.String . The main sense of the class is to correctly handle null value. Useful results can be obtained if null representation is set for example to "(null)" or "N/A" - this strings are then parsed into null value.
StringConvertor: Specifies contract for all classes converting object values to String representation and back from String into object instances. Convertors should be based on Locale . Default StringConvertor s can be obtained with class StringConvertors .
NumberStringConvertor: Abstract base class for numeric StringConvertors. It uses default java.text.Number format. New format can be set.
NullStringConvertor: Abstract base class for StringConvertors that recognise a presetn String value to represent null .
IntegerStringConvertor: String convertor for type java.lang.Integer .
FloatStringConvertor: String convertor for type java.lang.Float .
StringConvertors: Factory class for creation of default convertors for arbitrary classes.
BooleanStringConvertor: String convertor for type java.util.Date .
BigDecimalStringConvertor: String convertor for type BigDecimal .
BigIntegerStringConvertor: String convertor for type BigInteger .
DoubleStringConvertor: String convertor for type java.lang.Double.
LongStringConvertor: String convertor for type java.lang.Long.

Home | Contact Us | Privacy Policy | Terms of Service