Package | Description |
---|---|
org.openstreetmap.josm.gui.mappaint.mapcss |
Drawing system based on MapCSS map styles.
|
Modifier and Type | Field and Description |
---|---|
ConditionFactory.Op |
ConditionFactory.KeyValueCondition.op
The key/value match operation.
|
(package private) ConditionFactory.Op |
ConditionFactory.RoleCondition.op |
(package private) ConditionFactory.Op |
ConditionFactory.IndexCondition.op |
Modifier and Type | Field and Description |
---|---|
(package private) static java.util.Set<ConditionFactory.Op> |
ConditionFactory.Op.NEGATED_OPS |
protected static java.util.Set<ConditionFactory.Op> |
ConditionFactory.KeyValueRegexpCondition.SUPPORTED_OPS |
Modifier and Type | Method and Description |
---|---|
static ConditionFactory.Op |
ConditionFactory.Op.valueOf(java.lang.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.
|
Modifier and Type | Method and Description |
---|---|
static Condition |
ConditionFactory.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 Condition |
ConditionFactory.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 regexp
|
Constructor and Description |
---|
IndexCondition(java.lang.String index,
ConditionFactory.Op op)
Constructs a new
IndexCondition . |
KeyValueCondition(java.lang.String k,
java.lang.String v,
ConditionFactory.Op op,
boolean considerValAsKey)
Creates a key/value-condition.
|
KeyValueRegexpCondition(java.lang.String k,
java.lang.String v,
ConditionFactory.Op op,
boolean considerValAsKey)
Constructs a new
KeyValueRegexpCondition . |
Op(ConditionFactory.Op negate)
Create a new Op by negating an other op.
|
RegexpKeyValueRegexpCondition(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 regexp
|
RoleCondition(java.lang.String role,
ConditionFactory.Op op)
Constructs a new
RoleCondition . |