org.eclipse.ditto.wot.model.ImmutableSchemaDefinitions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ditto-wot-model Show documentation
Show all versions of ditto-wot-model Show documentation
Eclipse Ditto is a framework for creating and managing digital twins in the IoT.
The newest version!
/*
* Copyright (c) 2022 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*/
package org.eclipse.ditto.wot.model;
import static org.eclipse.ditto.base.model.common.ConditionChecker.checkNotNull;
import java.util.AbstractMap;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.Set;
import javax.annotation.Nullable;
import javax.annotation.concurrent.Immutable;
import org.eclipse.ditto.json.JsonCollectors;
import org.eclipse.ditto.json.JsonField;
import org.eclipse.ditto.json.JsonObject;
/**
* Immutable implementation of {@link SchemaDefinitions}.
*/
@Immutable
final class ImmutableSchemaDefinitions extends AbstractMap implements SchemaDefinitions {
private final Map dataSchemas;
ImmutableSchemaDefinitions(final Map dataSchemas) {
this.dataSchemas = checkNotNull(dataSchemas, "dataSchemas");
}
@Override
public Optional getSchemaDefinition(final CharSequence key) {
return Optional.ofNullable(dataSchemas.get(key.toString()));
}
@Override
public Set> entrySet() {
return dataSchemas.entrySet();
}
@Override
public JsonObject toJson() {
return dataSchemas.entrySet().stream()
.map(e -> JsonField.newInstance(e.getKey(), e.getValue().toJson()))
.collect(JsonCollectors.fieldsToObject());
}
@Override
public boolean equals(@Nullable final Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
final ImmutableSchemaDefinitions that = (ImmutableSchemaDefinitions) o;
return Objects.equals(dataSchemas, that.dataSchemas);
}
@Override
public int hashCode() {
return Objects.hash(dataSchemas);
}
@Override
public String toString() {
return getClass().getSimpleName() + "[" +
"dataSchemas=" + dataSchemas +
"]";
}
}