Class AbstractListSelectControl.DefaultValueRepresentationStrategy<VV>

    • Constructor Detail

      • DefaultValueRepresentationStrategy

        public DefaultValueRepresentationStrategy​(java.lang.Class<VV> valueClass)
        Value class constructor with a default converter. This implementation uses a DefaultStringLiteralConverter.
        Parameters:
        valueClass - The class indicating the type of value to convert.
        Throws:
        java.lang.NullPointerException - if the given value class is null.
      • DefaultValueRepresentationStrategy

        public DefaultValueRepresentationStrategy​(Converter<VV,​java.lang.String> converter)
        Converter constructor.
        Parameters:
        converter - The converter to use for displaying the value as a string.
        Throws:
        java.lang.NullPointerException - if the given converter is null.