
software.amazon.awssdk.services.location.model.GetMapTileRequest Maven / Gradle / Ivy
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package software.amazon.awssdk.services.location.model;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Consumer;
import java.util.function.Function;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.awscore.AwsRequestOverrideConfiguration;
import software.amazon.awssdk.core.SdkField;
import software.amazon.awssdk.core.SdkPojo;
import software.amazon.awssdk.core.protocol.MarshallLocation;
import software.amazon.awssdk.core.protocol.MarshallingType;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*/
@Generated("software.amazon.awssdk:codegen")
public final class GetMapTileRequest extends LocationRequest implements
ToCopyableBuilder {
private static final SdkField KEY_FIELD = SdkField. builder(MarshallingType.STRING).memberName("Key")
.getter(getter(GetMapTileRequest::key)).setter(setter(Builder::key))
.traits(LocationTrait.builder().location(MarshallLocation.QUERY_PARAM).locationName("key").build()).build();
private static final SdkField MAP_NAME_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("MapName").getter(getter(GetMapTileRequest::mapName)).setter(setter(Builder::mapName))
.traits(LocationTrait.builder().location(MarshallLocation.PATH).locationName("MapName").build()).build();
private static final SdkField X_FIELD = SdkField. builder(MarshallingType.STRING).memberName("X")
.getter(getter(GetMapTileRequest::x)).setter(setter(Builder::x))
.traits(LocationTrait.builder().location(MarshallLocation.PATH).locationName("X").build()).build();
private static final SdkField Y_FIELD = SdkField. builder(MarshallingType.STRING).memberName("Y")
.getter(getter(GetMapTileRequest::y)).setter(setter(Builder::y))
.traits(LocationTrait.builder().location(MarshallLocation.PATH).locationName("Y").build()).build();
private static final SdkField Z_FIELD = SdkField. builder(MarshallingType.STRING).memberName("Z")
.getter(getter(GetMapTileRequest::z)).setter(setter(Builder::z))
.traits(LocationTrait.builder().location(MarshallLocation.PATH).locationName("Z").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(KEY_FIELD, MAP_NAME_FIELD,
X_FIELD, Y_FIELD, Z_FIELD));
private final String key;
private final String mapName;
private final String x;
private final String y;
private final String z;
private GetMapTileRequest(BuilderImpl builder) {
super(builder);
this.key = builder.key;
this.mapName = builder.mapName;
this.x = builder.x;
this.y = builder.y;
this.z = builder.z;
}
/**
*
* The optional API key
* to authorize the request.
*
*
* @return The optional API
* key to authorize the request.
*/
public final String key() {
return key;
}
/**
*
* The map resource to retrieve the map tiles from.
*
*
* @return The map resource to retrieve the map tiles from.
*/
public final String mapName() {
return mapName;
}
/**
*
* The X axis value for the map tile.
*
*
* @return The X axis value for the map tile.
*/
public final String x() {
return x;
}
/**
*
* The Y axis value for the map tile.
*
*
* @return The Y axis value for the map tile.
*/
public final String y() {
return y;
}
/**
*
* The zoom value for the map tile.
*
*
* @return The zoom value for the map tile.
*/
public final String z() {
return z;
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
public static Builder builder() {
return new BuilderImpl();
}
public static Class extends Builder> serializableBuilderClass() {
return BuilderImpl.class;
}
@Override
public final int hashCode() {
int hashCode = 1;
hashCode = 31 * hashCode + super.hashCode();
hashCode = 31 * hashCode + Objects.hashCode(key());
hashCode = 31 * hashCode + Objects.hashCode(mapName());
hashCode = 31 * hashCode + Objects.hashCode(x());
hashCode = 31 * hashCode + Objects.hashCode(y());
hashCode = 31 * hashCode + Objects.hashCode(z());
return hashCode;
}
@Override
public final boolean equals(Object obj) {
return super.equals(obj) && equalsBySdkFields(obj);
}
@Override
public final boolean equalsBySdkFields(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof GetMapTileRequest)) {
return false;
}
GetMapTileRequest other = (GetMapTileRequest) obj;
return Objects.equals(key(), other.key()) && Objects.equals(mapName(), other.mapName()) && Objects.equals(x(), other.x())
&& Objects.equals(y(), other.y()) && Objects.equals(z(), other.z());
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public final String toString() {
return ToString.builder("GetMapTileRequest").add("Key", key() == null ? null : "*** Sensitive Data Redacted ***")
.add("MapName", mapName()).add("X", x()).add("Y", y()).add("Z", z()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "Key":
return Optional.ofNullable(clazz.cast(key()));
case "MapName":
return Optional.ofNullable(clazz.cast(mapName()));
case "X":
return Optional.ofNullable(clazz.cast(x()));
case "Y":
return Optional.ofNullable(clazz.cast(y()));
case "Z":
return Optional.ofNullable(clazz.cast(z()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function
© 2015 - 2025 Weber Informatics LLC | Privacy Policy