public class PredicateArgs
extends java.lang.Object
If tags for the values are present (e.g. "branch=jb_2.3,vote=approved") then the args are placed in a map that maps tag to value (e.g., "branch" to "jb_2.3"). If no tag is present (e.g. "jb_2.3,approved") then the args are placed into a positional list. Args may be mixed so some may appear in the map and others in the positional list (e.g. "vote=approved,jb_2.3).
Modifier and Type | Field and Description |
---|---|
java.util.Map<java.lang.String,java.lang.String> |
keyValue |
java.util.List<java.lang.String> |
positional |