public boolean equals()

in junit-platform-engine/src/main/java/org/junit/platform/engine/UniqueId.java [314:324]


		public boolean equals(Object o) {
			if (this == o) {
				return true;
			}
			if (o == null || getClass() != o.getClass()) {
				return false;
			}

			Segment that = (Segment) o;
			return Objects.equals(this.type, that.type) && Objects.equals(this.value, that.value);
		}