public interface IStringObjectConverter<OBJECT_TYPE>
Modifier and Type | Method and Description |
---|---|
OBJECT_TYPE |
convertToObject(java.lang.String string)
Converts an string input to an object.
|
java.lang.String |
getAcceptingRegExp()
Gets the regular expression that describes the valid inputs.
|
IInputVerifier |
getInputVerifier()
Gets an input verifier that verifies the input.
|
ITextMask |
getMask()
Gets a mask if the input should be masked.
|
IValidator<java.lang.String> |
getStringValidator()
Gets a validator that will be used to validate the string input.
|
OBJECT_TYPE convertToObject(java.lang.String string)
string
- The string to convert.IValidator<java.lang.String> getStringValidator()
IInputVerifier getInputVerifier()
IInputVerifier
's
if possible because SPI implementations that use 'AJAX' can implement client side verification easier.java.lang.String getAcceptingRegExp()
IInputVerifier
's
if possible because SPI implementations that uses e.g 'AJAX' can implement client side verification easier.
REMARK: Implementors must not assume that the regular expression will be used on all platformsITextMask getMask()
Siehe auch Jowidgets Nutzerhandbuch