Package net.sourceforge.pmd.properties
Class ValueParserConstants
- java.lang.Object
-
- net.sourceforge.pmd.properties.ValueParserConstants
-
@Deprecated @InternalApi public final class ValueParserConstants extends Object
Deprecated.Was internal APIThis 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<List<U>>
multi(ValueParser<U> parser, char delimiter)
Deprecated.Returns a value parser parsing lists of values of type U.
-
-
-
Method Detail
-
multi
public static <U> ValueParser<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 valuedelimiter
- Char delimiting values- Returns:
- A list of values
-
-