public interface

S2TileProtoOrBuilder

 androidx.core.location.altitude.impl.proto.S2TileProtoOrBuilder

Subclasses:

S2TileProto, S2TileProto.Builder

Gradle dependencies

compile group: 'androidx.core', name: 'core-location-altitude-proto', version: '1.0.0-alpha02'

  • groupId: androidx.core
  • artifactId: core-location-altitude-proto
  • version: 1.0.0-alpha02

Artifact androidx.core:core-location-altitude-proto:1.0.0-alpha02 it located at Google repository (https://maven.google.com/)

Summary

Methods
public com.google.protobuf.ByteStringgetByteBuffer()

 Encoded data that merge into a value in the unit interval [0, 1] for each
 map cell in this tile.

public com.google.protobuf.ByteStringgetByteJpeg()

optional bytes byte_jpeg = 3;

public com.google.protobuf.ByteStringgetBytePng()

optional bytes byte_png = 4;

public java.lang.StringgetTileKey()

 The S2 token associated with the common parent of all map cells in this
 tile.

public com.google.protobuf.ByteStringgetTileKeyBytes()

 The S2 token associated with the common parent of all map cells in this
 tile.

public booleanhasByteBuffer()

 Encoded data that merge into a value in the unit interval [0, 1] for each
 map cell in this tile.

public booleanhasByteJpeg()

optional bytes byte_jpeg = 3;

public booleanhasBytePng()

optional bytes byte_png = 4;

public booleanhasTileKey()

 The S2 token associated with the common parent of all map cells in this
 tile.

Methods

public boolean hasTileKey()

 The S2 token associated with the common parent of all map cells in this
 tile.
 
optional string tile_key = 1;

Returns:

Whether the tileKey field is set.

public java.lang.String getTileKey()

 The S2 token associated with the common parent of all map cells in this
 tile.
 
optional string tile_key = 1;

Returns:

The tileKey.

public com.google.protobuf.ByteString getTileKeyBytes()

 The S2 token associated with the common parent of all map cells in this
 tile.
 
optional string tile_key = 1;

Returns:

The bytes for tileKey.

public boolean hasByteBuffer()

 Encoded data that merge into a value in the unit interval [0, 1] for each
 map cell in this tile.
 
optional bytes byte_buffer = 2;

Returns:

Whether the byteBuffer field is set.

public com.google.protobuf.ByteString getByteBuffer()

 Encoded data that merge into a value in the unit interval [0, 1] for each
 map cell in this tile.
 
optional bytes byte_buffer = 2;

Returns:

The byteBuffer.

public boolean hasByteJpeg()

optional bytes byte_jpeg = 3;

Returns:

Whether the byteJpeg field is set.

public com.google.protobuf.ByteString getByteJpeg()

optional bytes byte_jpeg = 3;

Returns:

The byteJpeg.

public boolean hasBytePng()

optional bytes byte_png = 4;

Returns:

Whether the bytePng field is set.

public com.google.protobuf.ByteString getBytePng()

optional bytes byte_png = 4;

Returns:

The bytePng.

Source

// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: s2_tile.proto

package androidx.core.location.altitude.impl.proto;

public interface S2TileProtoOrBuilder extends
    // @@protoc_insertion_point(interface_extends:androidx.core.location.altitude.impl.proto.S2TileProto)
    com.google.protobuf.MessageLiteOrBuilder {

  /**
   * <pre>
   * The S2 token associated with the common parent of all map cells in this
   * tile.
   * </pre>
   *
   * <code>optional string tile_key = 1;</code>
   * @return Whether the tileKey field is set.
   */
  boolean hasTileKey();
  /**
   * <pre>
   * The S2 token associated with the common parent of all map cells in this
   * tile.
   * </pre>
   *
   * <code>optional string tile_key = 1;</code>
   * @return The tileKey.
   */
  java.lang.String getTileKey();
  /**
   * <pre>
   * The S2 token associated with the common parent of all map cells in this
   * tile.
   * </pre>
   *
   * <code>optional string tile_key = 1;</code>
   * @return The bytes for tileKey.
   */
  com.google.protobuf.ByteString
      getTileKeyBytes();

  /**
   * <pre>
   * Encoded data that merge into a value in the unit interval [0, 1] for each
   * map cell in this tile.
   * </pre>
   *
   * <code>optional bytes byte_buffer = 2;</code>
   * @return Whether the byteBuffer field is set.
   */
  boolean hasByteBuffer();
  /**
   * <pre>
   * Encoded data that merge into a value in the unit interval [0, 1] for each
   * map cell in this tile.
   * </pre>
   *
   * <code>optional bytes byte_buffer = 2;</code>
   * @return The byteBuffer.
   */
  com.google.protobuf.ByteString getByteBuffer();

  /**
   * <code>optional bytes byte_jpeg = 3;</code>
   * @return Whether the byteJpeg field is set.
   */
  boolean hasByteJpeg();
  /**
   * <code>optional bytes byte_jpeg = 3;</code>
   * @return The byteJpeg.
   */
  com.google.protobuf.ByteString getByteJpeg();

  /**
   * <code>optional bytes byte_png = 4;</code>
   * @return Whether the bytePng field is set.
   */
  boolean hasBytePng();
  /**
   * <code>optional bytes byte_png = 4;</code>
   * @return The bytePng.
   */
  com.google.protobuf.ByteString getBytePng();
}