Uses of Class
org.openstreetmap.josm.gui.mappaint.mapcss.ConditionFactory.Op
-
Packages that use ConditionFactory.Op Package Description org.openstreetmap.josm.gui.mappaint.mapcss Drawing system based on MapCSS map styles. -
-
Uses of ConditionFactory.Op in org.openstreetmap.josm.gui.mappaint.mapcss
Fields in org.openstreetmap.josm.gui.mappaint.mapcss declared as ConditionFactory.Op Modifier and Type Field Description (package private) ConditionFactory.Op
ConditionFactory.IndexCondition. op
ConditionFactory.Op
ConditionFactory.KeyValueCondition. op
The key/value match operation.(package private) ConditionFactory.Op
ConditionFactory.RoleCondition. op
Fields in org.openstreetmap.josm.gui.mappaint.mapcss with type parameters of type ConditionFactory.Op Modifier and Type Field Description (package private) static Set<ConditionFactory.Op>
ConditionFactory.Op. NEGATED_OPS
protected static Set<ConditionFactory.Op>
ConditionFactory.KeyValueRegexpCondition. SUPPORTED_OPS
Methods in org.openstreetmap.josm.gui.mappaint.mapcss that return ConditionFactory.Op Modifier and Type Method Description static ConditionFactory.Op
ConditionFactory.Op. valueOf(String name)
Returns the enum constant of this type with the specified name.static ConditionFactory.Op[]
ConditionFactory.Op. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.openstreetmap.josm.gui.mappaint.mapcss with parameters of type ConditionFactory.Op Modifier and Type Method Description static Condition
ConditionFactory. createKeyValueCondition(String k, String v, ConditionFactory.Op op, Condition.Context context, boolean considerValAsKey)
Create a new condition that checks the key and the value of the object.static Condition
ConditionFactory. createRegexpKeyRegexpValueCondition(String k, String v, ConditionFactory.Op op)
Create a condition in which the key and the value need to match a given regexpConstructors in org.openstreetmap.josm.gui.mappaint.mapcss with parameters of type ConditionFactory.Op Constructor Description IndexCondition(String index, ConditionFactory.Op op)
Constructs a newIndexCondition
.KeyValueCondition(String k, String v, ConditionFactory.Op op, boolean considerValAsKey)
Creates a key/value-condition.KeyValueRegexpCondition(String k, String v, ConditionFactory.Op op, boolean considerValAsKey)
Constructs a newKeyValueRegexpCondition
.Op(ConditionFactory.Op negate)
Create a new Op by negating an other op.RegexpKeyValueRegexpCondition(String k, String v, ConditionFactory.Op op)
Create a condition in which the key and the value need to match a given regexpRoleCondition(String role, ConditionFactory.Op op)
Constructs a newRoleCondition
.
-