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

io.opentelemetry.sdk.logs.data.StringBody Maven / Gradle / Ivy

The newest version!
/*
 * Copyright The OpenTelemetry Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package io.opentelemetry.sdk.logs.data;

import com.google.auto.value.AutoValue;
import javax.annotation.concurrent.Immutable;

@Immutable
@AutoValue
@SuppressWarnings("deprecation") // Implementation of deprecated Body
abstract class StringBody implements Body {
  StringBody() {}

  static Body create(String stringValue) {
    return new AutoValue_StringBody(stringValue);
  }

  @Override
  public final Type getType() {
    return Type.STRING;
  }

  @Override
  public abstract String asString();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy