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

main.java.com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest Maven / Gradle / Ivy

There is a newer version: 5.133.1
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: streamlayer/analytics/v1/waves/waves.proto

// Protobuf Java Version: 3.25.3
package com.streamlayer.analytics.waves.v1;

/**
 * Protobuf type {@code streamlayer.analytics.v1.waves.TotalWavesByKindRequest}
 */
public  final class TotalWavesByKindRequest extends
    com.google.protobuf.GeneratedMessageLite<
        TotalWavesByKindRequest, TotalWavesByKindRequest.Builder> implements
    // @@protoc_insertion_point(message_implements:streamlayer.analytics.v1.waves.TotalWavesByKindRequest)
    TotalWavesByKindRequestOrBuilder {
  private TotalWavesByKindRequest() {
  }
  public interface TotalRequestFilterOrBuilder extends
      // @@protoc_insertion_point(interface_extends:streamlayer.analytics.v1.waves.TotalWavesByKindRequest.TotalRequestFilter)
      com.google.protobuf.MessageLiteOrBuilder {

    /**
     * 
     * period
     * 
* * .streamlayer.analytics.v1.common.Period period = 1 [json_name = "period"]; * @return Whether the period field is set. */ boolean hasPeriod(); /** *
     * period
     * 
* * .streamlayer.analytics.v1.common.Period period = 1 [json_name = "period"]; * @return The period. */ com.streamlayer.analytics.common.v1.Period getPeriod(); /** *
     * kind: KIND_WAVES_SENT, KIND_WAVES_REPLIES
     * 
* * .streamlayer.analytics.v1.common.Kind kind = 2 [json_name = "kind"]; * @return The enum numeric value on the wire for kind. */ int getKindValue(); /** *
     * kind: KIND_WAVES_SENT, KIND_WAVES_REPLIES
     * 
* * .streamlayer.analytics.v1.common.Kind kind = 2 [json_name = "kind"]; * @return The kind. */ com.streamlayer.analytics.common.v1.Kind getKind(); /** *
     * sports event ids
     * 
* * uint64 event_id = 3 [json_name = "eventId"]; * @return The eventId. */ long getEventId(); } /** * Protobuf type {@code streamlayer.analytics.v1.waves.TotalWavesByKindRequest.TotalRequestFilter} */ public static final class TotalRequestFilter extends com.google.protobuf.GeneratedMessageLite< TotalRequestFilter, TotalRequestFilter.Builder> implements // @@protoc_insertion_point(message_implements:streamlayer.analytics.v1.waves.TotalWavesByKindRequest.TotalRequestFilter) TotalRequestFilterOrBuilder { private TotalRequestFilter() { } private int bitField0_; public static final int PERIOD_FIELD_NUMBER = 1; private com.streamlayer.analytics.common.v1.Period period_; /** *
     * period
     * 
* * .streamlayer.analytics.v1.common.Period period = 1 [json_name = "period"]; */ @java.lang.Override public boolean hasPeriod() { return ((bitField0_ & 0x00000001) != 0); } /** *
     * period
     * 
* * .streamlayer.analytics.v1.common.Period period = 1 [json_name = "period"]; */ @java.lang.Override public com.streamlayer.analytics.common.v1.Period getPeriod() { return period_ == null ? com.streamlayer.analytics.common.v1.Period.getDefaultInstance() : period_; } /** *
     * period
     * 
* * .streamlayer.analytics.v1.common.Period period = 1 [json_name = "period"]; */ private void setPeriod(com.streamlayer.analytics.common.v1.Period value) { value.getClass(); period_ = value; bitField0_ |= 0x00000001; } /** *
     * period
     * 
* * .streamlayer.analytics.v1.common.Period period = 1 [json_name = "period"]; */ @java.lang.SuppressWarnings({"ReferenceEquality"}) private void mergePeriod(com.streamlayer.analytics.common.v1.Period value) { value.getClass(); if (period_ != null && period_ != com.streamlayer.analytics.common.v1.Period.getDefaultInstance()) { period_ = com.streamlayer.analytics.common.v1.Period.newBuilder(period_).mergeFrom(value).buildPartial(); } else { period_ = value; } bitField0_ |= 0x00000001; } /** *
     * period
     * 
* * .streamlayer.analytics.v1.common.Period period = 1 [json_name = "period"]; */ private void clearPeriod() { period_ = null; bitField0_ = (bitField0_ & ~0x00000001); } public static final int KIND_FIELD_NUMBER = 2; private int kind_; /** *
     * kind: KIND_WAVES_SENT, KIND_WAVES_REPLIES
     * 
* * .streamlayer.analytics.v1.common.Kind kind = 2 [json_name = "kind"]; * @return The enum numeric value on the wire for kind. */ @java.lang.Override public int getKindValue() { return kind_; } /** *
     * kind: KIND_WAVES_SENT, KIND_WAVES_REPLIES
     * 
* * .streamlayer.analytics.v1.common.Kind kind = 2 [json_name = "kind"]; * @return The kind. */ @java.lang.Override public com.streamlayer.analytics.common.v1.Kind getKind() { com.streamlayer.analytics.common.v1.Kind result = com.streamlayer.analytics.common.v1.Kind.forNumber(kind_); return result == null ? com.streamlayer.analytics.common.v1.Kind.UNRECOGNIZED : result; } /** *
     * kind: KIND_WAVES_SENT, KIND_WAVES_REPLIES
     * 
* * .streamlayer.analytics.v1.common.Kind kind = 2 [json_name = "kind"]; * @param value The enum numeric value on the wire for kind to set. */ private void setKindValue(int value) { kind_ = value; } /** *
     * kind: KIND_WAVES_SENT, KIND_WAVES_REPLIES
     * 
* * .streamlayer.analytics.v1.common.Kind kind = 2 [json_name = "kind"]; * @param value The kind to set. */ private void setKind(com.streamlayer.analytics.common.v1.Kind value) { kind_ = value.getNumber(); } /** *
     * kind: KIND_WAVES_SENT, KIND_WAVES_REPLIES
     * 
* * .streamlayer.analytics.v1.common.Kind kind = 2 [json_name = "kind"]; */ private void clearKind() { kind_ = 0; } public static final int EVENT_ID_FIELD_NUMBER = 3; private long eventId_; /** *
     * sports event ids
     * 
* * uint64 event_id = 3 [json_name = "eventId"]; * @return The eventId. */ @java.lang.Override public long getEventId() { return eventId_; } /** *
     * sports event ids
     * 
* * uint64 event_id = 3 [json_name = "eventId"]; * @param value The eventId to set. */ private void setEventId(long value) { eventId_ = value; } /** *
     * sports event ids
     * 
* * uint64 event_id = 3 [json_name = "eventId"]; */ private void clearEventId() { eventId_ = 0L; } public static com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, data); } public static com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, data, extensionRegistry); } public static com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, data); } public static com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, data, extensionRegistry); } public static com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, data); } public static com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, data, extensionRegistry); } public static com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, input); } public static com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, input, extensionRegistry); } public static com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return parseDelimitedFrom(DEFAULT_INSTANCE, input); } public static com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); } public static com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, input); } public static com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, input, extensionRegistry); } public static Builder newBuilder() { return (Builder) DEFAULT_INSTANCE.createBuilder(); } public static Builder newBuilder(com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter prototype) { return DEFAULT_INSTANCE.createBuilder(prototype); } /** * Protobuf type {@code streamlayer.analytics.v1.waves.TotalWavesByKindRequest.TotalRequestFilter} */ public static final class Builder extends com.google.protobuf.GeneratedMessageLite.Builder< com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter, Builder> implements // @@protoc_insertion_point(builder_implements:streamlayer.analytics.v1.waves.TotalWavesByKindRequest.TotalRequestFilter) com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilterOrBuilder { // Construct using com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter.newBuilder() private Builder() { super(DEFAULT_INSTANCE); } /** *
       * period
       * 
* * .streamlayer.analytics.v1.common.Period period = 1 [json_name = "period"]; */ @java.lang.Override public boolean hasPeriod() { return instance.hasPeriod(); } /** *
       * period
       * 
* * .streamlayer.analytics.v1.common.Period period = 1 [json_name = "period"]; */ @java.lang.Override public com.streamlayer.analytics.common.v1.Period getPeriod() { return instance.getPeriod(); } /** *
       * period
       * 
* * .streamlayer.analytics.v1.common.Period period = 1 [json_name = "period"]; */ public Builder setPeriod(com.streamlayer.analytics.common.v1.Period value) { copyOnWrite(); instance.setPeriod(value); return this; } /** *
       * period
       * 
* * .streamlayer.analytics.v1.common.Period period = 1 [json_name = "period"]; */ public Builder setPeriod( com.streamlayer.analytics.common.v1.Period.Builder builderForValue) { copyOnWrite(); instance.setPeriod(builderForValue.build()); return this; } /** *
       * period
       * 
* * .streamlayer.analytics.v1.common.Period period = 1 [json_name = "period"]; */ public Builder mergePeriod(com.streamlayer.analytics.common.v1.Period value) { copyOnWrite(); instance.mergePeriod(value); return this; } /** *
       * period
       * 
* * .streamlayer.analytics.v1.common.Period period = 1 [json_name = "period"]; */ public Builder clearPeriod() { copyOnWrite(); instance.clearPeriod(); return this; } /** *
       * kind: KIND_WAVES_SENT, KIND_WAVES_REPLIES
       * 
* * .streamlayer.analytics.v1.common.Kind kind = 2 [json_name = "kind"]; * @return The enum numeric value on the wire for kind. */ @java.lang.Override public int getKindValue() { return instance.getKindValue(); } /** *
       * kind: KIND_WAVES_SENT, KIND_WAVES_REPLIES
       * 
* * .streamlayer.analytics.v1.common.Kind kind = 2 [json_name = "kind"]; * @param value The kind to set. * @return This builder for chaining. */ public Builder setKindValue(int value) { copyOnWrite(); instance.setKindValue(value); return this; } /** *
       * kind: KIND_WAVES_SENT, KIND_WAVES_REPLIES
       * 
* * .streamlayer.analytics.v1.common.Kind kind = 2 [json_name = "kind"]; * @return The kind. */ @java.lang.Override public com.streamlayer.analytics.common.v1.Kind getKind() { return instance.getKind(); } /** *
       * kind: KIND_WAVES_SENT, KIND_WAVES_REPLIES
       * 
* * .streamlayer.analytics.v1.common.Kind kind = 2 [json_name = "kind"]; * @param value The enum numeric value on the wire for kind to set. * @return This builder for chaining. */ public Builder setKind(com.streamlayer.analytics.common.v1.Kind value) { copyOnWrite(); instance.setKind(value); return this; } /** *
       * kind: KIND_WAVES_SENT, KIND_WAVES_REPLIES
       * 
* * .streamlayer.analytics.v1.common.Kind kind = 2 [json_name = "kind"]; * @return This builder for chaining. */ public Builder clearKind() { copyOnWrite(); instance.clearKind(); return this; } /** *
       * sports event ids
       * 
* * uint64 event_id = 3 [json_name = "eventId"]; * @return The eventId. */ @java.lang.Override public long getEventId() { return instance.getEventId(); } /** *
       * sports event ids
       * 
* * uint64 event_id = 3 [json_name = "eventId"]; * @param value The eventId to set. * @return This builder for chaining. */ public Builder setEventId(long value) { copyOnWrite(); instance.setEventId(value); return this; } /** *
       * sports event ids
       * 
* * uint64 event_id = 3 [json_name = "eventId"]; * @return This builder for chaining. */ public Builder clearEventId() { copyOnWrite(); instance.clearEventId(); return this; } // @@protoc_insertion_point(builder_scope:streamlayer.analytics.v1.waves.TotalWavesByKindRequest.TotalRequestFilter) } @java.lang.Override @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) protected final java.lang.Object dynamicMethod( com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, java.lang.Object arg0, java.lang.Object arg1) { switch (method) { case NEW_MUTABLE_INSTANCE: { return new com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter(); } case NEW_BUILDER: { return new Builder(); } case BUILD_MESSAGE_INFO: { java.lang.Object[] objects = new java.lang.Object[] { "bitField0_", "period_", "kind_", "eventId_", }; java.lang.String info = "\u0000\u0003\u0000\u0001\u0001\u0003\u0003\u0000\u0000\u0000\u0001\u1009\u0000\u0002" + "\f\u0003\u0003"; return newMessageInfo(DEFAULT_INSTANCE, info, objects); } // fall through case GET_DEFAULT_INSTANCE: { return DEFAULT_INSTANCE; } case GET_PARSER: { com.google.protobuf.Parser parser = PARSER; if (parser == null) { synchronized (com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter.class) { parser = PARSER; if (parser == null) { parser = new DefaultInstanceBasedParser( DEFAULT_INSTANCE); PARSER = parser; } } } return parser; } case GET_MEMOIZED_IS_INITIALIZED: { return (byte) 1; } case SET_MEMOIZED_IS_INITIALIZED: { return null; } } throw new UnsupportedOperationException(); } // @@protoc_insertion_point(class_scope:streamlayer.analytics.v1.waves.TotalWavesByKindRequest.TotalRequestFilter) private static final com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter DEFAULT_INSTANCE; static { TotalRequestFilter defaultInstance = new TotalRequestFilter(); // New instances are implicitly immutable so no need to make // immutable. DEFAULT_INSTANCE = defaultInstance; com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( TotalRequestFilter.class, defaultInstance); } public static com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter getDefaultInstance() { return DEFAULT_INSTANCE; } private static volatile com.google.protobuf.Parser PARSER; public static com.google.protobuf.Parser parser() { return DEFAULT_INSTANCE.getParserForType(); } } private int bitField0_; public static final int FILTER_FIELD_NUMBER = 1; private com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter filter_; /** * .streamlayer.analytics.v1.waves.TotalWavesByKindRequest.TotalRequestFilter filter = 1 [json_name = "filter"]; */ @java.lang.Override public boolean hasFilter() { return ((bitField0_ & 0x00000001) != 0); } /** * .streamlayer.analytics.v1.waves.TotalWavesByKindRequest.TotalRequestFilter filter = 1 [json_name = "filter"]; */ @java.lang.Override public com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter getFilter() { return filter_ == null ? com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter.getDefaultInstance() : filter_; } /** * .streamlayer.analytics.v1.waves.TotalWavesByKindRequest.TotalRequestFilter filter = 1 [json_name = "filter"]; */ private void setFilter(com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter value) { value.getClass(); filter_ = value; bitField0_ |= 0x00000001; } /** * .streamlayer.analytics.v1.waves.TotalWavesByKindRequest.TotalRequestFilter filter = 1 [json_name = "filter"]; */ @java.lang.SuppressWarnings({"ReferenceEquality"}) private void mergeFilter(com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter value) { value.getClass(); if (filter_ != null && filter_ != com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter.getDefaultInstance()) { filter_ = com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter.newBuilder(filter_).mergeFrom(value).buildPartial(); } else { filter_ = value; } bitField0_ |= 0x00000001; } /** * .streamlayer.analytics.v1.waves.TotalWavesByKindRequest.TotalRequestFilter filter = 1 [json_name = "filter"]; */ private void clearFilter() { filter_ = null; bitField0_ = (bitField0_ & ~0x00000001); } public static com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, data); } public static com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, data, extensionRegistry); } public static com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, data); } public static com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, data, extensionRegistry); } public static com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, data); } public static com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, data, extensionRegistry); } public static com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, input); } public static com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, input, extensionRegistry); } public static com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return parseDelimitedFrom(DEFAULT_INSTANCE, input); } public static com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); } public static com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, input); } public static com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, input, extensionRegistry); } public static Builder newBuilder() { return (Builder) DEFAULT_INSTANCE.createBuilder(); } public static Builder newBuilder(com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest prototype) { return DEFAULT_INSTANCE.createBuilder(prototype); } /** * Protobuf type {@code streamlayer.analytics.v1.waves.TotalWavesByKindRequest} */ public static final class Builder extends com.google.protobuf.GeneratedMessageLite.Builder< com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest, Builder> implements // @@protoc_insertion_point(builder_implements:streamlayer.analytics.v1.waves.TotalWavesByKindRequest) com.streamlayer.analytics.waves.v1.TotalWavesByKindRequestOrBuilder { // Construct using com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.newBuilder() private Builder() { super(DEFAULT_INSTANCE); } /** * .streamlayer.analytics.v1.waves.TotalWavesByKindRequest.TotalRequestFilter filter = 1 [json_name = "filter"]; */ @java.lang.Override public boolean hasFilter() { return instance.hasFilter(); } /** * .streamlayer.analytics.v1.waves.TotalWavesByKindRequest.TotalRequestFilter filter = 1 [json_name = "filter"]; */ @java.lang.Override public com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter getFilter() { return instance.getFilter(); } /** * .streamlayer.analytics.v1.waves.TotalWavesByKindRequest.TotalRequestFilter filter = 1 [json_name = "filter"]; */ public Builder setFilter(com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter value) { copyOnWrite(); instance.setFilter(value); return this; } /** * .streamlayer.analytics.v1.waves.TotalWavesByKindRequest.TotalRequestFilter filter = 1 [json_name = "filter"]; */ public Builder setFilter( com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter.Builder builderForValue) { copyOnWrite(); instance.setFilter(builderForValue.build()); return this; } /** * .streamlayer.analytics.v1.waves.TotalWavesByKindRequest.TotalRequestFilter filter = 1 [json_name = "filter"]; */ public Builder mergeFilter(com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.TotalRequestFilter value) { copyOnWrite(); instance.mergeFilter(value); return this; } /** * .streamlayer.analytics.v1.waves.TotalWavesByKindRequest.TotalRequestFilter filter = 1 [json_name = "filter"]; */ public Builder clearFilter() { copyOnWrite(); instance.clearFilter(); return this; } // @@protoc_insertion_point(builder_scope:streamlayer.analytics.v1.waves.TotalWavesByKindRequest) } @java.lang.Override @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) protected final java.lang.Object dynamicMethod( com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, java.lang.Object arg0, java.lang.Object arg1) { switch (method) { case NEW_MUTABLE_INSTANCE: { return new com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest(); } case NEW_BUILDER: { return new Builder(); } case BUILD_MESSAGE_INFO: { java.lang.Object[] objects = new java.lang.Object[] { "bitField0_", "filter_", }; java.lang.String info = "\u0000\u0001\u0000\u0001\u0001\u0001\u0001\u0000\u0000\u0000\u0001\u1009\u0000"; return newMessageInfo(DEFAULT_INSTANCE, info, objects); } // fall through case GET_DEFAULT_INSTANCE: { return DEFAULT_INSTANCE; } case GET_PARSER: { com.google.protobuf.Parser parser = PARSER; if (parser == null) { synchronized (com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest.class) { parser = PARSER; if (parser == null) { parser = new DefaultInstanceBasedParser( DEFAULT_INSTANCE); PARSER = parser; } } } return parser; } case GET_MEMOIZED_IS_INITIALIZED: { return (byte) 1; } case SET_MEMOIZED_IS_INITIALIZED: { return null; } } throw new UnsupportedOperationException(); } // @@protoc_insertion_point(class_scope:streamlayer.analytics.v1.waves.TotalWavesByKindRequest) private static final com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest DEFAULT_INSTANCE; static { TotalWavesByKindRequest defaultInstance = new TotalWavesByKindRequest(); // New instances are implicitly immutable so no need to make // immutable. DEFAULT_INSTANCE = defaultInstance; com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( TotalWavesByKindRequest.class, defaultInstance); } public static com.streamlayer.analytics.waves.v1.TotalWavesByKindRequest getDefaultInstance() { return DEFAULT_INSTANCE; } private static volatile com.google.protobuf.Parser PARSER; public static com.google.protobuf.Parser parser() { return DEFAULT_INSTANCE.getParserForType(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy