All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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 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 getter(Function g) { return obj -> g.apply((GetMapTileRequest) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends LocationRequest.Builder, SdkPojo, CopyableBuilder { /** *

* The optional API * key to authorize the request. *

* * @param key * The optional API key to * authorize the request. * @return Returns a reference to this object so that method calls can be chained together. */ Builder key(String key); /** *

* The map resource to retrieve the map tiles from. *

* * @param mapName * The map resource to retrieve the map tiles from. * @return Returns a reference to this object so that method calls can be chained together. */ Builder mapName(String mapName); /** *

* The X axis value for the map tile. *

* * @param x * The X axis value for the map tile. * @return Returns a reference to this object so that method calls can be chained together. */ Builder x(String x); /** *

* The Y axis value for the map tile. *

* * @param y * The Y axis value for the map tile. * @return Returns a reference to this object so that method calls can be chained together. */ Builder y(String y); /** *

* The zoom value for the map tile. *

* * @param z * The zoom value for the map tile. * @return Returns a reference to this object so that method calls can be chained together. */ Builder z(String z); @Override Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration); @Override Builder overrideConfiguration(Consumer builderConsumer); } static final class BuilderImpl extends LocationRequest.BuilderImpl implements Builder { private String key; private String mapName; private String x; private String y; private String z; private BuilderImpl() { } private BuilderImpl(GetMapTileRequest model) { super(model); key(model.key); mapName(model.mapName); x(model.x); y(model.y); z(model.z); } public final String getKey() { return key; } public final void setKey(String key) { this.key = key; } @Override public final Builder key(String key) { this.key = key; return this; } public final String getMapName() { return mapName; } public final void setMapName(String mapName) { this.mapName = mapName; } @Override public final Builder mapName(String mapName) { this.mapName = mapName; return this; } public final String getX() { return x; } public final void setX(String x) { this.x = x; } @Override public final Builder x(String x) { this.x = x; return this; } public final String getY() { return y; } public final void setY(String y) { this.y = y; } @Override public final Builder y(String y) { this.y = y; return this; } public final String getZ() { return z; } public final void setZ(String z) { this.z = z; } @Override public final Builder z(String z) { this.z = z; return this; } @Override public Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) { super.overrideConfiguration(overrideConfiguration); return this; } @Override public Builder overrideConfiguration(Consumer builderConsumer) { super.overrideConfiguration(builderConsumer); return this; } @Override public GetMapTileRequest build() { return new GetMapTileRequest(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy