Uses of Class
com.vaadin.data.util.converter.Converter.ConversionException

Packages that use Converter.ConversionException
com.vaadin.data.util.converter   
com.vaadin.data.util.sqlcontainer   
com.vaadin.ui   
com.vaadin.ui.declarative.converters   
 

Uses of Converter.ConversionException in com.vaadin.data.util.converter
 

Methods in com.vaadin.data.util.converter that throw Converter.ConversionException
static
<PRESENTATIONTYPE,MODELTYPE>
PRESENTATIONTYPE
ConverterUtil.convertFromModel(MODELTYPE modelValue, java.lang.Class<? extends PRESENTATIONTYPE> presentationType, Converter<PRESENTATIONTYPE,MODELTYPE> converter, java.util.Locale locale)
          Convert the given value from the data source type to the UI type.
 java.sql.Date DateToSqlDateConverter.convertToModel(java.util.Date value, java.lang.Class<? extends java.sql.Date> targetType, java.util.Locale locale)
           
 MODEL Converter.convertToModel(PRESENTATION value, java.lang.Class<? extends MODEL> targetType, java.util.Locale locale)
          Converts the given value from target type to source type.
 MODEL ReverseConverter.convertToModel(PRESENTATION value, java.lang.Class<? extends MODEL> targetType, java.util.Locale locale)
           
static
<MODELTYPE,PRESENTATIONTYPE>
MODELTYPE
ConverterUtil.convertToModel(PRESENTATIONTYPE presentationValue, java.lang.Class<MODELTYPE> modelType, Converter<PRESENTATIONTYPE,MODELTYPE> converter, java.util.Locale locale)
          Convert the given value from the presentation (UI) type to model (data source) type.
 java.math.BigDecimal StringToBigDecimalConverter.convertToModel(java.lang.String value, java.lang.Class<? extends java.math.BigDecimal> targetType, java.util.Locale locale)
           
 java.math.BigInteger StringToBigIntegerConverter.convertToModel(java.lang.String value, java.lang.Class<? extends java.math.BigInteger> targetType, java.util.Locale locale)
           
 java.lang.Boolean StringToBooleanConverter.convertToModel(java.lang.String value, java.lang.Class<? extends java.lang.Boolean> targetType, java.util.Locale locale)
           
 java.lang.Byte StringToByteConverter.convertToModel(java.lang.String value, java.lang.Class<? extends java.lang.Byte> targetType, java.util.Locale locale)
           
 java.util.Date StringToDateConverter.convertToModel(java.lang.String value, java.lang.Class<? extends java.util.Date> targetType, java.util.Locale locale)
           
 java.lang.Double StringToDoubleConverter.convertToModel(java.lang.String value, java.lang.Class<? extends java.lang.Double> targetType, java.util.Locale locale)
           
 java.lang.Enum StringToEnumConverter.convertToModel(java.lang.String value, java.lang.Class<? extends java.lang.Enum> targetType, java.util.Locale locale)
           
 java.lang.Float StringToFloatConverter.convertToModel(java.lang.String value, java.lang.Class<? extends java.lang.Float> targetType, java.util.Locale locale)
           
 java.lang.Integer StringToIntegerConverter.convertToModel(java.lang.String value, java.lang.Class<? extends java.lang.Integer> targetType, java.util.Locale locale)
           
 java.lang.Long StringToLongConverter.convertToModel(java.lang.String value, java.lang.Class<? extends java.lang.Long> targetType, java.util.Locale locale)
           
 java.lang.Short StringToShortConverter.convertToModel(java.lang.String value, java.lang.Class<? extends java.lang.Short> targetType, java.util.Locale locale)
           
protected  java.lang.Number AbstractStringToNumberConverter.convertToNumber(java.lang.String value, java.lang.Class<? extends java.lang.Number> targetType, java.util.Locale locale)
          Convert the value to a Number using the given locale and AbstractStringToNumberConverter.getFormat(Locale).
 java.lang.String StringToBooleanConverter.convertToPresentation(java.lang.Boolean value, java.lang.Class<? extends java.lang.String> targetType, java.util.Locale locale)
           
 java.util.Date DateToSqlDateConverter.convertToPresentation(java.sql.Date value, java.lang.Class<? extends java.util.Date> targetType, java.util.Locale locale)
           
 java.lang.String StringToDateConverter.convertToPresentation(java.util.Date value, java.lang.Class<? extends java.lang.String> targetType, java.util.Locale locale)
           
 java.lang.String StringToEnumConverter.convertToPresentation(java.lang.Enum value, java.lang.Class<? extends java.lang.String> targetType, java.util.Locale locale)
           
 PRESENTATION Converter.convertToPresentation(MODEL value, java.lang.Class<? extends PRESENTATION> targetType, java.util.Locale locale)
          Converts the given value from source type to target type.
 PRESENTATION ReverseConverter.convertToPresentation(MODEL value, java.lang.Class<? extends PRESENTATION> targetType, java.util.Locale locale)
           
 java.lang.String AbstractStringToNumberConverter.convertToPresentation(T value, java.lang.Class<? extends java.lang.String> targetType, java.util.Locale locale)
           
static
<T extends java.lang.Enum<T>>
T
StringToEnumConverter.stringToEnum(java.lang.String value, java.lang.Class<T> enumType, java.util.Locale locale)
          Converts the given string to the given enum type using the given locale
 

Uses of Converter.ConversionException in com.vaadin.data.util.sqlcontainer
 

Methods in com.vaadin.data.util.sqlcontainer that throw Converter.ConversionException
 void ColumnProperty.setValue(java.lang.Object newValue)
           
 

Uses of Converter.ConversionException in com.vaadin.ui
 

Methods in com.vaadin.ui with parameters of type Converter.ConversionException
protected  java.lang.String AbstractField.getConversionError(java.lang.Class<?> dataSourceType, Converter.ConversionException e)
          Returns the conversion error with {0} replaced by the data source type and {1} replaced by the exception (localized) message.
 

Methods in com.vaadin.ui that throw Converter.ConversionException
protected  java.util.Date DateField.handleUnparsableDateString(java.lang.String dateString)
          This method is called to handle a non-empty date string from the client if the client could not parse it as a Date.
 void AbstractField.setValue(T newFieldValue)
          Sets the value of the field.
protected  void AbstractField.setValue(T newFieldValue, boolean repaintIsNotNeeded)
          Sets the value of the field.
 

Uses of Converter.ConversionException in com.vaadin.ui.declarative.converters
 

Methods in com.vaadin.ui.declarative.converters that throw Converter.ConversionException
 java.util.Date DesignDateConverter.convertToModel(java.lang.String value, java.lang.Class<? extends java.util.Date> targetType, java.util.Locale locale)
           
 java.lang.Enum DesignEnumConverter.convertToModel(java.lang.String value, java.lang.Class<? extends java.lang.Enum> targetType, java.util.Locale locale)
           
 java.lang.Object DesignObjectConverter.convertToModel(java.lang.String value, java.lang.Class<? extends java.lang.Object> targetType, java.util.Locale locale)
           
 Resource DesignResourceConverter.convertToModel(java.lang.String value, java.lang.Class<? extends Resource> targetType, java.util.Locale locale)
           
 ShortcutAction DesignShortcutActionConverter.convertToModel(java.lang.String value, java.lang.Class<? extends ShortcutAction> targetType, java.util.Locale locale)
           
 java.util.TimeZone DesignTimeZoneConverter.convertToModel(java.lang.String value, java.lang.Class<? extends java.util.TimeZone> targetTimeZone, java.util.Locale locale)
           
 TYPE DesignToStringConverter.convertToModel(java.lang.String value, java.lang.Class<? extends TYPE> targetType, java.util.Locale locale)
           
 java.lang.String DesignDateConverter.convertToPresentation(java.util.Date value, java.lang.Class<? extends java.lang.String> targetType, java.util.Locale locale)
           
 java.lang.String DesignEnumConverter.convertToPresentation(java.lang.Enum value, java.lang.Class<? extends java.lang.String> targetType, java.util.Locale locale)
           
 java.lang.String DesignObjectConverter.convertToPresentation(java.lang.Object value, java.lang.Class<? extends java.lang.String> targetType, java.util.Locale locale)
           
 java.lang.String DesignResourceConverter.convertToPresentation(Resource value, java.lang.Class<? extends java.lang.String> targetType, java.util.Locale locale)
           
 java.lang.String DesignShortcutActionConverter.convertToPresentation(ShortcutAction value, java.lang.Class<? extends java.lang.String> targetType, java.util.Locale locale)
           
 java.lang.String DesignTimeZoneConverter.convertToPresentation(java.util.TimeZone value, java.lang.Class<? extends java.lang.String> targetTimeZone, java.util.Locale locale)
           
 java.lang.String DesignToStringConverter.convertToPresentation(TYPE value, java.lang.Class<? extends java.lang.String> targetType, java.util.Locale locale)
           
 



Copyright © 2000-2014 Vaadin Ltd. All Rights Reserved.