Class DuplicateRelation.RelMember
- java.lang.Object
-
- org.openstreetmap.josm.data.validation.tests.DuplicateRelation.RelMember
-
- Enclosing class:
- DuplicateRelation
public static class DuplicateRelation.RelMember extends java.lang.Object
Class to store one relation members and information about it
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.List<LatLon>coorCoordinates of the relation memberprivate longrelIdID of the relation member in case it is aRelationprivate java.lang.StringroleRole of the relation memberprivate java.util.Map<java.lang.String,java.lang.String>tagsTags of the relation memberprivate OsmPrimitiveTypetypeType of the relation member
-
Constructor Summary
Constructors Constructor Description RelMember(RelationMember src)Extract and store relation information based on the relation member
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)inthashCode()
-
-
-
Field Detail
-
role
private final java.lang.String role
Role of the relation member
-
type
private final OsmPrimitiveType type
Type of the relation member
-
tags
private java.util.Map<java.lang.String,java.lang.String> tags
Tags of the relation member
-
-
Constructor Detail
-
RelMember
public RelMember(RelationMember src)
Extract and store relation information based on the relation member- Parameters:
src- The relation member to store information about
-
-