- java.lang.Object
-
- com.thoughtworks.qdox.model.util.TagParser
-
public final class TagParser extends Object
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Map<String,String>
parseNamedParameters(String tagValue)
Extract a Map of named parametersstatic List<String>
parseParameters(String tagValue)
Extract an array of parameters as name or name=value representationstatic String[]
parseWords(String tagValue)
Extract an array of positional parameters
-
-
-
Method Detail
-
parseNamedParameters
public static Map<String,String> parseNamedParameters(String tagValue)
Extract a Map of named parameters- Parameters:
tagValue
- the tag value- Returns:
- a Map with the parameter names and their values
-
parseWords
public static String[] parseWords(String tagValue)
Extract an array of positional parameters- Parameters:
tagValue
- the tag value- Returns:
- an array with words
-
-