001// Generated by the protocol buffer compiler.  DO NOT EDIT!
002// NO CHECKED-IN PROTOBUF GENCODE
003// source: java/dev/enola/common/protobuf/test.proto
004// Protobuf Java Version: 4.32.0
005
006package dev.enola.protobuf.test;
007
008@com.google.protobuf.Generated
009public interface TestSimpleOrBuilder extends
010    // @@protoc_insertion_point(interface_extends:dev.enola.protobuf.test.TestSimple)
011    com.google.protobuf.MessageOrBuilder {
012
013  /**
014   * <code>string text = 1;</code>
015   * @return The text.
016   */
017  java.lang.String getText();
018  /**
019   * <code>string text = 1;</code>
020   * @return The bytes for text.
021   */
022  com.google.protobuf.ByteString
023      getTextBytes();
024
025  /**
026   * <code>uint32 number = 2;</code>
027   * @return The number.
028   */
029  int getNumber();
030
031  /**
032   * <code>.google.protobuf.Timestamp ts = 3;</code>
033   * @return Whether the ts field is set.
034   */
035  boolean hasTs();
036  /**
037   * <code>.google.protobuf.Timestamp ts = 3;</code>
038   * @return The ts.
039   */
040  com.google.protobuf.Timestamp getTs();
041  /**
042   * <code>.google.protobuf.Timestamp ts = 3;</code>
043   */
044  com.google.protobuf.TimestampOrBuilder getTsOrBuilder();
045
046  /**
047   * <code>bytes bytes = 4;</code>
048   * @return The bytes.
049   */
050  com.google.protobuf.ByteString getBytes();
051
052  /**
053   * <code>.dev.enola.protobuf.test.TestEnum an_enum = 5;</code>
054   * @return The enum numeric value on the wire for anEnum.
055   */
056  int getAnEnumValue();
057  /**
058   * <code>.dev.enola.protobuf.test.TestEnum an_enum = 5;</code>
059   * @return The anEnum.
060   */
061  dev.enola.protobuf.test.TestEnum getAnEnum();
062
063  /**
064   * <code>.dev.enola.protobuf.test.TestSimple.TestNestedEnum a_nested_enum = 6;</code>
065   * @return The enum numeric value on the wire for aNestedEnum.
066   */
067  int getANestedEnumValue();
068  /**
069   * <code>.dev.enola.protobuf.test.TestSimple.TestNestedEnum a_nested_enum = 6;</code>
070   * @return The aNestedEnum.
071   */
072  dev.enola.protobuf.test.TestSimple.TestNestedEnum getANestedEnum();
073}