Uses of Interface
org.openstreetmap.josm.gui.mappaint.mapcss.Condition
-
Packages that use Condition Package Description org.openstreetmap.josm.gui.mappaint.mapcss Drawing system based on MapCSS map styles.org.openstreetmap.josm.gui.mappaint.mapcss.parsergen -
-
Uses of Condition in org.openstreetmap.josm.gui.mappaint.mapcss
Subinterfaces of Condition in org.openstreetmap.josm.gui.mappaint.mapcss Modifier and Type Interface Description static interfaceCondition.TagConditionThis is a condition that can be converted to a tagClasses in org.openstreetmap.josm.gui.mappaint.mapcss that implement Condition Modifier and Type Class Description static classConditionFactory.ClassConditionClass condition.static classConditionFactory.ExpressionConditionA condition that is fulfilled whenever the expression is evaluated to be true.static classConditionFactory.IndexConditionIndex condition.static classConditionFactory.KeyConditionKeyCondition represent one of the following conditions in either the link or the primitive context:static classConditionFactory.KeyRegexpConditionKeyPatternCondition represents a conditions matching keys based on a pattern.static classConditionFactory.KeyValueConditionRepresents a key/value condition which is either applied to a primitive.static classConditionFactory.KeyValueRegexpConditionThis condition requires a fixed key to match a given regexpstatic classConditionFactory.OpenEndPseudoClassConditionOpen end pseudo class condition.static classConditionFactory.PseudoClassConditionPseudo class condition.static classConditionFactory.RegexpKeyValueRegexpConditionA condition that checks that a key with the matching pattern has a value with the matching pattern.static classConditionFactory.RoleConditionRole condition.static classConditionFactory.SimpleKeyValueConditionMost common case of a KeyValueCondition, this is the basic key=value case.Fields in org.openstreetmap.josm.gui.mappaint.mapcss declared as Condition Modifier and Type Field Description private Condition[]Selector.AbstractSelector. condsMethods in org.openstreetmap.josm.gui.mappaint.mapcss that return Condition Modifier and Type Method Description static ConditionConditionFactory. createKeyCondition(java.lang.String k, boolean not, ConditionFactory.KeyMatchType matchType, Condition.Context context)Creates a condition that checks the given key.static ConditionConditionFactory. createKeyValueCondition(java.lang.String k, java.lang.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 ConditionConditionFactory. createRegexpKeyRegexpValueCondition(java.lang.String k, java.lang.String v, ConditionFactory.Op op)Create a condition in which the key and the value need to match a given regexpMethods in org.openstreetmap.josm.gui.mappaint.mapcss that return types with arguments of type Condition Modifier and Type Method Description java.util.List<Condition>Selector.AbstractSelector. getConditions()java.util.List<Condition>Selector.ChildOrParentSelector. getConditions()java.util.List<Condition>Selector. getConditions()Returns the list of conditions.Method parameters in org.openstreetmap.josm.gui.mappaint.mapcss with type arguments of type Condition Modifier and Type Method Description private static java.lang.StringMapCSSRuleIndex. findAnyRequiredKey(java.util.List<Condition> conds)Search for any key that condition might depend on.Constructor parameters in org.openstreetmap.josm.gui.mappaint.mapcss with type arguments of type Condition Constructor Description AbstractSelector(java.util.List<Condition> conditions)GeneralSelector(java.lang.String base, Range range, java.util.List<Condition> conds, Subpart subpart)LinkSelector(java.util.List<Condition> conditions) -
Uses of Condition in org.openstreetmap.josm.gui.mappaint.mapcss.parsergen
Methods in org.openstreetmap.josm.gui.mappaint.mapcss.parsergen that return Condition Modifier and Type Method Description ConditionMapCSSParser. class_or_pseudoclass(Condition.Context context)ConditionMapCSSParser. condition(Condition.Context context)ConditionMapCSSParser. simple_key_condition(Condition.Context context)ConditionMapCSSParser. simple_key_value_condition(Condition.Context context)
-