Class ValueParserConstants


  • @Deprecated
    @InternalApi
    public final class ValueParserConstants
    extends java.lang.Object
    Deprecated.
    Was internal API
    This class will be completely scrapped with 7.0.0. It only hid away the syntactic overhead caused by the lack of lambdas in Java 7.
    Since:
    6.0.0
    Author:
    Clément Fournier
    • Method Summary

      All Methods Static Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      static <U> ValueParser<java.util.List<U>> multi​(ValueParser<U> parser, char delimiter)
      Deprecated.
      Returns a value parser parsing lists of values of type U.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • multi

        public static <U> ValueParser<java.util.List<U>> multi​(ValueParser<U> parser,
                                                               char delimiter)
        Deprecated.
        Returns a value parser parsing lists of values of type U.
        Type Parameters:
        U - Element type of the target list
        Parameters:
        parser - Parser used to parse a single value
        delimiter - Char delimiting values
        Returns:
        A list of values