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

io.opencensus.proto.metrics.v1.MetricDescriptor Maven / Gradle / Ivy

There is a newer version: 1.0.46
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: opencensus/proto/metrics/v1/metrics.proto

package io.opencensus.proto.metrics.v1;

/**
 * 
 * Defines a metric type and its schema.
 * 
* * Protobuf type {@code opencensus.proto.metrics.v1.MetricDescriptor} */ public final class MetricDescriptor extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:opencensus.proto.metrics.v1.MetricDescriptor) MetricDescriptorOrBuilder { private static final long serialVersionUID = 0L; // Use MetricDescriptor.newBuilder() to construct. private MetricDescriptor(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private MetricDescriptor() { name_ = ""; description_ = ""; unit_ = ""; type_ = 0; labelKeys_ = java.util.Collections.emptyList(); } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new MetricDescriptor(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private MetricDescriptor( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } int mutable_bitField0_ = 0; com.google.protobuf.UnknownFieldSet.Builder unknownFields = com.google.protobuf.UnknownFieldSet.newBuilder(); try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 10: { java.lang.String s = input.readStringRequireUtf8(); name_ = s; break; } case 18: { java.lang.String s = input.readStringRequireUtf8(); description_ = s; break; } case 26: { java.lang.String s = input.readStringRequireUtf8(); unit_ = s; break; } case 32: { int rawValue = input.readEnum(); type_ = rawValue; break; } case 42: { if (!((mutable_bitField0_ & 0x00000001) != 0)) { labelKeys_ = new java.util.ArrayList(); mutable_bitField0_ |= 0x00000001; } labelKeys_.add( input.readMessage(io.opencensus.proto.metrics.v1.LabelKey.parser(), extensionRegistry)); break; } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { done = true; } break; } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException( e).setUnfinishedMessage(this); } finally { if (((mutable_bitField0_ & 0x00000001) != 0)) { labelKeys_ = java.util.Collections.unmodifiableList(labelKeys_); } this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.opencensus.proto.metrics.v1.MetricsProto.internal_static_opencensus_proto_metrics_v1_MetricDescriptor_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.opencensus.proto.metrics.v1.MetricsProto.internal_static_opencensus_proto_metrics_v1_MetricDescriptor_fieldAccessorTable .ensureFieldAccessorsInitialized( io.opencensus.proto.metrics.v1.MetricDescriptor.class, io.opencensus.proto.metrics.v1.MetricDescriptor.Builder.class); } /** *
   * The kind of metric. It describes how the data is reported.
   * A gauge is an instantaneous measurement of a value.
   * A cumulative measurement is a value accumulated over a time interval. In
   * a time series, cumulative measurements should have the same start time,
   * increasing values and increasing end times, until an event resets the
   * cumulative value to zero and sets a new start time for the following
   * points.
   * 
* * Protobuf enum {@code opencensus.proto.metrics.v1.MetricDescriptor.Type} */ public enum Type implements com.google.protobuf.ProtocolMessageEnum { /** *
     * Do not use this default value.
     * 
* * UNSPECIFIED = 0; */ UNSPECIFIED(0), /** *
     * Integer gauge. The value can go both up and down.
     * 
* * GAUGE_INT64 = 1; */ GAUGE_INT64(1), /** *
     * Floating point gauge. The value can go both up and down.
     * 
* * GAUGE_DOUBLE = 2; */ GAUGE_DOUBLE(2), /** *
     * Distribution gauge measurement. The count and sum can go both up and
     * down. Recorded values are always >= 0.
     * Used in scenarios like a snapshot of time the current items in a queue
     * have spent there.
     * 
* * GAUGE_DISTRIBUTION = 3; */ GAUGE_DISTRIBUTION(3), /** *
     * Integer cumulative measurement. The value cannot decrease, if resets
     * then the start_time should also be reset.
     * 
* * CUMULATIVE_INT64 = 4; */ CUMULATIVE_INT64(4), /** *
     * Floating point cumulative measurement. The value cannot decrease, if
     * resets then the start_time should also be reset. Recorded values are
     * always >= 0.
     * 
* * CUMULATIVE_DOUBLE = 5; */ CUMULATIVE_DOUBLE(5), /** *
     * Distribution cumulative measurement. The count and sum cannot decrease,
     * if resets then the start_time should also be reset.
     * 
* * CUMULATIVE_DISTRIBUTION = 6; */ CUMULATIVE_DISTRIBUTION(6), /** *
     * Some frameworks implemented Histograms as a summary of observations
     * (usually things like request durations and response sizes). While it
     * also provides a total count of observations and a sum of all observed
     * values, it calculates configurable percentiles over a sliding time
     * window. This is not recommended, since it cannot be aggregated.
     * 
* * SUMMARY = 7; */ SUMMARY(7), UNRECOGNIZED(-1), ; /** *
     * Do not use this default value.
     * 
* * UNSPECIFIED = 0; */ public static final int UNSPECIFIED_VALUE = 0; /** *
     * Integer gauge. The value can go both up and down.
     * 
* * GAUGE_INT64 = 1; */ public static final int GAUGE_INT64_VALUE = 1; /** *
     * Floating point gauge. The value can go both up and down.
     * 
* * GAUGE_DOUBLE = 2; */ public static final int GAUGE_DOUBLE_VALUE = 2; /** *
     * Distribution gauge measurement. The count and sum can go both up and
     * down. Recorded values are always >= 0.
     * Used in scenarios like a snapshot of time the current items in a queue
     * have spent there.
     * 
* * GAUGE_DISTRIBUTION = 3; */ public static final int GAUGE_DISTRIBUTION_VALUE = 3; /** *
     * Integer cumulative measurement. The value cannot decrease, if resets
     * then the start_time should also be reset.
     * 
* * CUMULATIVE_INT64 = 4; */ public static final int CUMULATIVE_INT64_VALUE = 4; /** *
     * Floating point cumulative measurement. The value cannot decrease, if
     * resets then the start_time should also be reset. Recorded values are
     * always >= 0.
     * 
* * CUMULATIVE_DOUBLE = 5; */ public static final int CUMULATIVE_DOUBLE_VALUE = 5; /** *
     * Distribution cumulative measurement. The count and sum cannot decrease,
     * if resets then the start_time should also be reset.
     * 
* * CUMULATIVE_DISTRIBUTION = 6; */ public static final int CUMULATIVE_DISTRIBUTION_VALUE = 6; /** *
     * Some frameworks implemented Histograms as a summary of observations
     * (usually things like request durations and response sizes). While it
     * also provides a total count of observations and a sum of all observed
     * values, it calculates configurable percentiles over a sliding time
     * window. This is not recommended, since it cannot be aggregated.
     * 
* * SUMMARY = 7; */ public static final int SUMMARY_VALUE = 7; public final int getNumber() { if (this == UNRECOGNIZED) { throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; } /** * @deprecated Use {@link #forNumber(int)} instead. */ @java.lang.Deprecated public static Type valueOf(int value) { return forNumber(value); } public static Type forNumber(int value) { switch (value) { case 0: return UNSPECIFIED; case 1: return GAUGE_INT64; case 2: return GAUGE_DOUBLE; case 3: return GAUGE_DISTRIBUTION; case 4: return CUMULATIVE_INT64; case 5: return CUMULATIVE_DOUBLE; case 6: return CUMULATIVE_DISTRIBUTION; case 7: return SUMMARY; default: return null; } } public static com.google.protobuf.Internal.EnumLiteMap internalGetValueMap() { return internalValueMap; } private static final com.google.protobuf.Internal.EnumLiteMap< Type> internalValueMap = new com.google.protobuf.Internal.EnumLiteMap() { public Type findValueByNumber(int number) { return Type.forNumber(number); } }; public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() { return getDescriptor().getValues().get(ordinal()); } public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() { return getDescriptor(); } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { return io.opencensus.proto.metrics.v1.MetricDescriptor.getDescriptor().getEnumTypes().get(0); } private static final Type[] VALUES = values(); public static Type valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { throw new java.lang.IllegalArgumentException( "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { return UNRECOGNIZED; } return VALUES[desc.getIndex()]; } private final int value; private Type(int value) { this.value = value; } // @@protoc_insertion_point(enum_scope:opencensus.proto.metrics.v1.MetricDescriptor.Type) } public static final int NAME_FIELD_NUMBER = 1; private volatile java.lang.Object name_; /** *
   * The metric type, including its DNS name prefix. It must be unique.
   * 
* * string name = 1; */ public java.lang.String getName() { java.lang.Object ref = name_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); name_ = s; return s; } } /** *
   * The metric type, including its DNS name prefix. It must be unique.
   * 
* * string name = 1; */ public com.google.protobuf.ByteString getNameBytes() { java.lang.Object ref = name_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); name_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int DESCRIPTION_FIELD_NUMBER = 2; private volatile java.lang.Object description_; /** *
   * A detailed description of the metric, which can be used in documentation.
   * 
* * string description = 2; */ public java.lang.String getDescription() { java.lang.Object ref = description_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); description_ = s; return s; } } /** *
   * A detailed description of the metric, which can be used in documentation.
   * 
* * string description = 2; */ public com.google.protobuf.ByteString getDescriptionBytes() { java.lang.Object ref = description_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); description_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int UNIT_FIELD_NUMBER = 3; private volatile java.lang.Object unit_; /** *
   * The unit in which the metric value is reported. Follows the format
   * described by http://unitsofmeasure.org/ucum.html.
   * 
* * string unit = 3; */ public java.lang.String getUnit() { java.lang.Object ref = unit_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); unit_ = s; return s; } } /** *
   * The unit in which the metric value is reported. Follows the format
   * described by http://unitsofmeasure.org/ucum.html.
   * 
* * string unit = 3; */ public com.google.protobuf.ByteString getUnitBytes() { java.lang.Object ref = unit_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); unit_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int TYPE_FIELD_NUMBER = 4; private int type_; /** * .opencensus.proto.metrics.v1.MetricDescriptor.Type type = 4; */ public int getTypeValue() { return type_; } /** * .opencensus.proto.metrics.v1.MetricDescriptor.Type type = 4; */ public io.opencensus.proto.metrics.v1.MetricDescriptor.Type getType() { @SuppressWarnings("deprecation") io.opencensus.proto.metrics.v1.MetricDescriptor.Type result = io.opencensus.proto.metrics.v1.MetricDescriptor.Type.valueOf(type_); return result == null ? io.opencensus.proto.metrics.v1.MetricDescriptor.Type.UNRECOGNIZED : result; } public static final int LABEL_KEYS_FIELD_NUMBER = 5; private java.util.List labelKeys_; /** *
   * The label keys associated with the metric descriptor.
   * 
* * repeated .opencensus.proto.metrics.v1.LabelKey label_keys = 5; */ public java.util.List getLabelKeysList() { return labelKeys_; } /** *
   * The label keys associated with the metric descriptor.
   * 
* * repeated .opencensus.proto.metrics.v1.LabelKey label_keys = 5; */ public java.util.List getLabelKeysOrBuilderList() { return labelKeys_; } /** *
   * The label keys associated with the metric descriptor.
   * 
* * repeated .opencensus.proto.metrics.v1.LabelKey label_keys = 5; */ public int getLabelKeysCount() { return labelKeys_.size(); } /** *
   * The label keys associated with the metric descriptor.
   * 
* * repeated .opencensus.proto.metrics.v1.LabelKey label_keys = 5; */ public io.opencensus.proto.metrics.v1.LabelKey getLabelKeys(int index) { return labelKeys_.get(index); } /** *
   * The label keys associated with the metric descriptor.
   * 
* * repeated .opencensus.proto.metrics.v1.LabelKey label_keys = 5; */ public io.opencensus.proto.metrics.v1.LabelKeyOrBuilder getLabelKeysOrBuilder( int index) { return labelKeys_.get(index); } private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } @java.lang.Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (!getNameBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, name_); } if (!getDescriptionBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, description_); } if (!getUnitBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 3, unit_); } if (type_ != io.opencensus.proto.metrics.v1.MetricDescriptor.Type.UNSPECIFIED.getNumber()) { output.writeEnum(4, type_); } for (int i = 0; i < labelKeys_.size(); i++) { output.writeMessage(5, labelKeys_.get(i)); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!getNameBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, name_); } if (!getDescriptionBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, description_); } if (!getUnitBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, unit_); } if (type_ != io.opencensus.proto.metrics.v1.MetricDescriptor.Type.UNSPECIFIED.getNumber()) { size += com.google.protobuf.CodedOutputStream .computeEnumSize(4, type_); } for (int i = 0; i < labelKeys_.size(); i++) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(5, labelKeys_.get(i)); } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof io.opencensus.proto.metrics.v1.MetricDescriptor)) { return super.equals(obj); } io.opencensus.proto.metrics.v1.MetricDescriptor other = (io.opencensus.proto.metrics.v1.MetricDescriptor) obj; if (!getName() .equals(other.getName())) return false; if (!getDescription() .equals(other.getDescription())) return false; if (!getUnit() .equals(other.getUnit())) return false; if (type_ != other.type_) return false; if (!getLabelKeysList() .equals(other.getLabelKeysList())) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + NAME_FIELD_NUMBER; hash = (53 * hash) + getName().hashCode(); hash = (37 * hash) + DESCRIPTION_FIELD_NUMBER; hash = (53 * hash) + getDescription().hashCode(); hash = (37 * hash) + UNIT_FIELD_NUMBER; hash = (53 * hash) + getUnit().hashCode(); hash = (37 * hash) + TYPE_FIELD_NUMBER; hash = (53 * hash) + type_; if (getLabelKeysCount() > 0) { hash = (37 * hash) + LABEL_KEYS_FIELD_NUMBER; hash = (53 * hash) + getLabelKeysList().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static io.opencensus.proto.metrics.v1.MetricDescriptor parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.opencensus.proto.metrics.v1.MetricDescriptor parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.opencensus.proto.metrics.v1.MetricDescriptor parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.opencensus.proto.metrics.v1.MetricDescriptor parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.opencensus.proto.metrics.v1.MetricDescriptor parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.opencensus.proto.metrics.v1.MetricDescriptor parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.opencensus.proto.metrics.v1.MetricDescriptor parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.opencensus.proto.metrics.v1.MetricDescriptor parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static io.opencensus.proto.metrics.v1.MetricDescriptor parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static io.opencensus.proto.metrics.v1.MetricDescriptor parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static io.opencensus.proto.metrics.v1.MetricDescriptor parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.opencensus.proto.metrics.v1.MetricDescriptor parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(io.opencensus.proto.metrics.v1.MetricDescriptor prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @java.lang.Override public Builder toBuilder() { return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override protected Builder newBuilderForType( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** *
   * Defines a metric type and its schema.
   * 
* * Protobuf type {@code opencensus.proto.metrics.v1.MetricDescriptor} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:opencensus.proto.metrics.v1.MetricDescriptor) io.opencensus.proto.metrics.v1.MetricDescriptorOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.opencensus.proto.metrics.v1.MetricsProto.internal_static_opencensus_proto_metrics_v1_MetricDescriptor_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.opencensus.proto.metrics.v1.MetricsProto.internal_static_opencensus_proto_metrics_v1_MetricDescriptor_fieldAccessorTable .ensureFieldAccessorsInitialized( io.opencensus.proto.metrics.v1.MetricDescriptor.class, io.opencensus.proto.metrics.v1.MetricDescriptor.Builder.class); } // Construct using io.opencensus.proto.metrics.v1.MetricDescriptor.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { getLabelKeysFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); name_ = ""; description_ = ""; unit_ = ""; type_ = 0; if (labelKeysBuilder_ == null) { labelKeys_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000001); } else { labelKeysBuilder_.clear(); } return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return io.opencensus.proto.metrics.v1.MetricsProto.internal_static_opencensus_proto_metrics_v1_MetricDescriptor_descriptor; } @java.lang.Override public io.opencensus.proto.metrics.v1.MetricDescriptor getDefaultInstanceForType() { return io.opencensus.proto.metrics.v1.MetricDescriptor.getDefaultInstance(); } @java.lang.Override public io.opencensus.proto.metrics.v1.MetricDescriptor build() { io.opencensus.proto.metrics.v1.MetricDescriptor result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public io.opencensus.proto.metrics.v1.MetricDescriptor buildPartial() { io.opencensus.proto.metrics.v1.MetricDescriptor result = new io.opencensus.proto.metrics.v1.MetricDescriptor(this); int from_bitField0_ = bitField0_; result.name_ = name_; result.description_ = description_; result.unit_ = unit_; result.type_ = type_; if (labelKeysBuilder_ == null) { if (((bitField0_ & 0x00000001) != 0)) { labelKeys_ = java.util.Collections.unmodifiableList(labelKeys_); bitField0_ = (bitField0_ & ~0x00000001); } result.labelKeys_ = labelKeys_; } else { result.labelKeys_ = labelKeysBuilder_.build(); } onBuilt(); return result; } @java.lang.Override public Builder clone() { return super.clone(); } @java.lang.Override public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.setField(field, value); } @java.lang.Override public Builder clearField( com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @java.lang.Override public Builder clearOneof( com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } @java.lang.Override public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.addRepeatedField(field, value); } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof io.opencensus.proto.metrics.v1.MetricDescriptor) { return mergeFrom((io.opencensus.proto.metrics.v1.MetricDescriptor)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(io.opencensus.proto.metrics.v1.MetricDescriptor other) { if (other == io.opencensus.proto.metrics.v1.MetricDescriptor.getDefaultInstance()) return this; if (!other.getName().isEmpty()) { name_ = other.name_; onChanged(); } if (!other.getDescription().isEmpty()) { description_ = other.description_; onChanged(); } if (!other.getUnit().isEmpty()) { unit_ = other.unit_; onChanged(); } if (other.type_ != 0) { setTypeValue(other.getTypeValue()); } if (labelKeysBuilder_ == null) { if (!other.labelKeys_.isEmpty()) { if (labelKeys_.isEmpty()) { labelKeys_ = other.labelKeys_; bitField0_ = (bitField0_ & ~0x00000001); } else { ensureLabelKeysIsMutable(); labelKeys_.addAll(other.labelKeys_); } onChanged(); } } else { if (!other.labelKeys_.isEmpty()) { if (labelKeysBuilder_.isEmpty()) { labelKeysBuilder_.dispose(); labelKeysBuilder_ = null; labelKeys_ = other.labelKeys_; bitField0_ = (bitField0_ & ~0x00000001); labelKeysBuilder_ = com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? getLabelKeysFieldBuilder() : null; } else { labelKeysBuilder_.addAllMessages(other.labelKeys_); } } } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { return true; } @java.lang.Override public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { io.opencensus.proto.metrics.v1.MetricDescriptor parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (io.opencensus.proto.metrics.v1.MetricDescriptor) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int bitField0_; private java.lang.Object name_ = ""; /** *
     * The metric type, including its DNS name prefix. It must be unique.
     * 
* * string name = 1; */ public java.lang.String getName() { java.lang.Object ref = name_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); name_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * The metric type, including its DNS name prefix. It must be unique.
     * 
* * string name = 1; */ public com.google.protobuf.ByteString getNameBytes() { java.lang.Object ref = name_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); name_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * The metric type, including its DNS name prefix. It must be unique.
     * 
* * string name = 1; */ public Builder setName( java.lang.String value) { if (value == null) { throw new NullPointerException(); } name_ = value; onChanged(); return this; } /** *
     * The metric type, including its DNS name prefix. It must be unique.
     * 
* * string name = 1; */ public Builder clearName() { name_ = getDefaultInstance().getName(); onChanged(); return this; } /** *
     * The metric type, including its DNS name prefix. It must be unique.
     * 
* * string name = 1; */ public Builder setNameBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); name_ = value; onChanged(); return this; } private java.lang.Object description_ = ""; /** *
     * A detailed description of the metric, which can be used in documentation.
     * 
* * string description = 2; */ public java.lang.String getDescription() { java.lang.Object ref = description_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); description_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * A detailed description of the metric, which can be used in documentation.
     * 
* * string description = 2; */ public com.google.protobuf.ByteString getDescriptionBytes() { java.lang.Object ref = description_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); description_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * A detailed description of the metric, which can be used in documentation.
     * 
* * string description = 2; */ public Builder setDescription( java.lang.String value) { if (value == null) { throw new NullPointerException(); } description_ = value; onChanged(); return this; } /** *
     * A detailed description of the metric, which can be used in documentation.
     * 
* * string description = 2; */ public Builder clearDescription() { description_ = getDefaultInstance().getDescription(); onChanged(); return this; } /** *
     * A detailed description of the metric, which can be used in documentation.
     * 
* * string description = 2; */ public Builder setDescriptionBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); description_ = value; onChanged(); return this; } private java.lang.Object unit_ = ""; /** *
     * The unit in which the metric value is reported. Follows the format
     * described by http://unitsofmeasure.org/ucum.html.
     * 
* * string unit = 3; */ public java.lang.String getUnit() { java.lang.Object ref = unit_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); unit_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * The unit in which the metric value is reported. Follows the format
     * described by http://unitsofmeasure.org/ucum.html.
     * 
* * string unit = 3; */ public com.google.protobuf.ByteString getUnitBytes() { java.lang.Object ref = unit_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); unit_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * The unit in which the metric value is reported. Follows the format
     * described by http://unitsofmeasure.org/ucum.html.
     * 
* * string unit = 3; */ public Builder setUnit( java.lang.String value) { if (value == null) { throw new NullPointerException(); } unit_ = value; onChanged(); return this; } /** *
     * The unit in which the metric value is reported. Follows the format
     * described by http://unitsofmeasure.org/ucum.html.
     * 
* * string unit = 3; */ public Builder clearUnit() { unit_ = getDefaultInstance().getUnit(); onChanged(); return this; } /** *
     * The unit in which the metric value is reported. Follows the format
     * described by http://unitsofmeasure.org/ucum.html.
     * 
* * string unit = 3; */ public Builder setUnitBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); unit_ = value; onChanged(); return this; } private int type_ = 0; /** * .opencensus.proto.metrics.v1.MetricDescriptor.Type type = 4; */ public int getTypeValue() { return type_; } /** * .opencensus.proto.metrics.v1.MetricDescriptor.Type type = 4; */ public Builder setTypeValue(int value) { type_ = value; onChanged(); return this; } /** * .opencensus.proto.metrics.v1.MetricDescriptor.Type type = 4; */ public io.opencensus.proto.metrics.v1.MetricDescriptor.Type getType() { @SuppressWarnings("deprecation") io.opencensus.proto.metrics.v1.MetricDescriptor.Type result = io.opencensus.proto.metrics.v1.MetricDescriptor.Type.valueOf(type_); return result == null ? io.opencensus.proto.metrics.v1.MetricDescriptor.Type.UNRECOGNIZED : result; } /** * .opencensus.proto.metrics.v1.MetricDescriptor.Type type = 4; */ public Builder setType(io.opencensus.proto.metrics.v1.MetricDescriptor.Type value) { if (value == null) { throw new NullPointerException(); } type_ = value.getNumber(); onChanged(); return this; } /** * .opencensus.proto.metrics.v1.MetricDescriptor.Type type = 4; */ public Builder clearType() { type_ = 0; onChanged(); return this; } private java.util.List labelKeys_ = java.util.Collections.emptyList(); private void ensureLabelKeysIsMutable() { if (!((bitField0_ & 0x00000001) != 0)) { labelKeys_ = new java.util.ArrayList(labelKeys_); bitField0_ |= 0x00000001; } } private com.google.protobuf.RepeatedFieldBuilderV3< io.opencensus.proto.metrics.v1.LabelKey, io.opencensus.proto.metrics.v1.LabelKey.Builder, io.opencensus.proto.metrics.v1.LabelKeyOrBuilder> labelKeysBuilder_; /** *
     * The label keys associated with the metric descriptor.
     * 
* * repeated .opencensus.proto.metrics.v1.LabelKey label_keys = 5; */ public java.util.List getLabelKeysList() { if (labelKeysBuilder_ == null) { return java.util.Collections.unmodifiableList(labelKeys_); } else { return labelKeysBuilder_.getMessageList(); } } /** *
     * The label keys associated with the metric descriptor.
     * 
* * repeated .opencensus.proto.metrics.v1.LabelKey label_keys = 5; */ public int getLabelKeysCount() { if (labelKeysBuilder_ == null) { return labelKeys_.size(); } else { return labelKeysBuilder_.getCount(); } } /** *
     * The label keys associated with the metric descriptor.
     * 
* * repeated .opencensus.proto.metrics.v1.LabelKey label_keys = 5; */ public io.opencensus.proto.metrics.v1.LabelKey getLabelKeys(int index) { if (labelKeysBuilder_ == null) { return labelKeys_.get(index); } else { return labelKeysBuilder_.getMessage(index); } } /** *
     * The label keys associated with the metric descriptor.
     * 
* * repeated .opencensus.proto.metrics.v1.LabelKey label_keys = 5; */ public Builder setLabelKeys( int index, io.opencensus.proto.metrics.v1.LabelKey value) { if (labelKeysBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureLabelKeysIsMutable(); labelKeys_.set(index, value); onChanged(); } else { labelKeysBuilder_.setMessage(index, value); } return this; } /** *
     * The label keys associated with the metric descriptor.
     * 
* * repeated .opencensus.proto.metrics.v1.LabelKey label_keys = 5; */ public Builder setLabelKeys( int index, io.opencensus.proto.metrics.v1.LabelKey.Builder builderForValue) { if (labelKeysBuilder_ == null) { ensureLabelKeysIsMutable(); labelKeys_.set(index, builderForValue.build()); onChanged(); } else { labelKeysBuilder_.setMessage(index, builderForValue.build()); } return this; } /** *
     * The label keys associated with the metric descriptor.
     * 
* * repeated .opencensus.proto.metrics.v1.LabelKey label_keys = 5; */ public Builder addLabelKeys(io.opencensus.proto.metrics.v1.LabelKey value) { if (labelKeysBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureLabelKeysIsMutable(); labelKeys_.add(value); onChanged(); } else { labelKeysBuilder_.addMessage(value); } return this; } /** *
     * The label keys associated with the metric descriptor.
     * 
* * repeated .opencensus.proto.metrics.v1.LabelKey label_keys = 5; */ public Builder addLabelKeys( int index, io.opencensus.proto.metrics.v1.LabelKey value) { if (labelKeysBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureLabelKeysIsMutable(); labelKeys_.add(index, value); onChanged(); } else { labelKeysBuilder_.addMessage(index, value); } return this; } /** *
     * The label keys associated with the metric descriptor.
     * 
* * repeated .opencensus.proto.metrics.v1.LabelKey label_keys = 5; */ public Builder addLabelKeys( io.opencensus.proto.metrics.v1.LabelKey.Builder builderForValue) { if (labelKeysBuilder_ == null) { ensureLabelKeysIsMutable(); labelKeys_.add(builderForValue.build()); onChanged(); } else { labelKeysBuilder_.addMessage(builderForValue.build()); } return this; } /** *
     * The label keys associated with the metric descriptor.
     * 
* * repeated .opencensus.proto.metrics.v1.LabelKey label_keys = 5; */ public Builder addLabelKeys( int index, io.opencensus.proto.metrics.v1.LabelKey.Builder builderForValue) { if (labelKeysBuilder_ == null) { ensureLabelKeysIsMutable(); labelKeys_.add(index, builderForValue.build()); onChanged(); } else { labelKeysBuilder_.addMessage(index, builderForValue.build()); } return this; } /** *
     * The label keys associated with the metric descriptor.
     * 
* * repeated .opencensus.proto.metrics.v1.LabelKey label_keys = 5; */ public Builder addAllLabelKeys( java.lang.Iterable values) { if (labelKeysBuilder_ == null) { ensureLabelKeysIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, labelKeys_); onChanged(); } else { labelKeysBuilder_.addAllMessages(values); } return this; } /** *
     * The label keys associated with the metric descriptor.
     * 
* * repeated .opencensus.proto.metrics.v1.LabelKey label_keys = 5; */ public Builder clearLabelKeys() { if (labelKeysBuilder_ == null) { labelKeys_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); } else { labelKeysBuilder_.clear(); } return this; } /** *
     * The label keys associated with the metric descriptor.
     * 
* * repeated .opencensus.proto.metrics.v1.LabelKey label_keys = 5; */ public Builder removeLabelKeys(int index) { if (labelKeysBuilder_ == null) { ensureLabelKeysIsMutable(); labelKeys_.remove(index); onChanged(); } else { labelKeysBuilder_.remove(index); } return this; } /** *
     * The label keys associated with the metric descriptor.
     * 
* * repeated .opencensus.proto.metrics.v1.LabelKey label_keys = 5; */ public io.opencensus.proto.metrics.v1.LabelKey.Builder getLabelKeysBuilder( int index) { return getLabelKeysFieldBuilder().getBuilder(index); } /** *
     * The label keys associated with the metric descriptor.
     * 
* * repeated .opencensus.proto.metrics.v1.LabelKey label_keys = 5; */ public io.opencensus.proto.metrics.v1.LabelKeyOrBuilder getLabelKeysOrBuilder( int index) { if (labelKeysBuilder_ == null) { return labelKeys_.get(index); } else { return labelKeysBuilder_.getMessageOrBuilder(index); } } /** *
     * The label keys associated with the metric descriptor.
     * 
* * repeated .opencensus.proto.metrics.v1.LabelKey label_keys = 5; */ public java.util.List getLabelKeysOrBuilderList() { if (labelKeysBuilder_ != null) { return labelKeysBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(labelKeys_); } } /** *
     * The label keys associated with the metric descriptor.
     * 
* * repeated .opencensus.proto.metrics.v1.LabelKey label_keys = 5; */ public io.opencensus.proto.metrics.v1.LabelKey.Builder addLabelKeysBuilder() { return getLabelKeysFieldBuilder().addBuilder( io.opencensus.proto.metrics.v1.LabelKey.getDefaultInstance()); } /** *
     * The label keys associated with the metric descriptor.
     * 
* * repeated .opencensus.proto.metrics.v1.LabelKey label_keys = 5; */ public io.opencensus.proto.metrics.v1.LabelKey.Builder addLabelKeysBuilder( int index) { return getLabelKeysFieldBuilder().addBuilder( index, io.opencensus.proto.metrics.v1.LabelKey.getDefaultInstance()); } /** *
     * The label keys associated with the metric descriptor.
     * 
* * repeated .opencensus.proto.metrics.v1.LabelKey label_keys = 5; */ public java.util.List getLabelKeysBuilderList() { return getLabelKeysFieldBuilder().getBuilderList(); } private com.google.protobuf.RepeatedFieldBuilderV3< io.opencensus.proto.metrics.v1.LabelKey, io.opencensus.proto.metrics.v1.LabelKey.Builder, io.opencensus.proto.metrics.v1.LabelKeyOrBuilder> getLabelKeysFieldBuilder() { if (labelKeysBuilder_ == null) { labelKeysBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< io.opencensus.proto.metrics.v1.LabelKey, io.opencensus.proto.metrics.v1.LabelKey.Builder, io.opencensus.proto.metrics.v1.LabelKeyOrBuilder>( labelKeys_, ((bitField0_ & 0x00000001) != 0), getParentForChildren(), isClean()); labelKeys_ = null; } return labelKeysBuilder_; } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); } @java.lang.Override public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:opencensus.proto.metrics.v1.MetricDescriptor) } // @@protoc_insertion_point(class_scope:opencensus.proto.metrics.v1.MetricDescriptor) private static final io.opencensus.proto.metrics.v1.MetricDescriptor DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new io.opencensus.proto.metrics.v1.MetricDescriptor(); } public static io.opencensus.proto.metrics.v1.MetricDescriptor getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public MetricDescriptor parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new MetricDescriptor(input, extensionRegistry); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override public io.opencensus.proto.metrics.v1.MetricDescriptor getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy