Package net.sourceforge.pmd.properties
Interface ValueParser<U>
-
- Type Parameters:
U
- The type of the value to parse
@Deprecated @InternalApi public interface ValueParser<U>
Deprecated.Parses a value from a string.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description U
valueOf(String value)
Deprecated.Extracts a primitive from a string.
-
-
-
Method Detail
-
valueOf
U valueOf(String value) throws IllegalArgumentException
Deprecated.Extracts a primitive from a string.- Parameters:
value
- The string to parse- Returns:
- The primitive found
- Throws:
IllegalArgumentException
- if the value couldn't be parsed
-
-