com.palantir.example.profile.protos.generated.ProfilePersistence Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: ProfilePersistence.proto
package com.palantir.example.profile.protos.generated;
public final class ProfilePersistence {
private ProfilePersistence() {}
public static void registerAllExtensions(
com.google.protobuf.ExtensionRegistryLite registry) {
}
public static void registerAllExtensions(
com.google.protobuf.ExtensionRegistry registry) {
registerAllExtensions(
(com.google.protobuf.ExtensionRegistryLite) registry);
}
public interface UserProfileOrBuilder extends
// @@protoc_insertion_point(interface_extends:com.palantir.example.profile.protos.generated.UserProfile)
com.google.protobuf.MessageOrBuilder {
/**
* required string name = 1;
* @return Whether the name field is set.
*/
boolean hasName();
/**
* required string name = 1;
* @return The name.
*/
java.lang.String getName();
/**
* required string name = 1;
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
/**
* required sint64 birthEpochDay = 2;
* @return Whether the birthEpochDay field is set.
*/
boolean hasBirthEpochDay();
/**
* required sint64 birthEpochDay = 2;
* @return The birthEpochDay.
*/
long getBirthEpochDay();
}
/**
* Protobuf type {@code com.palantir.example.profile.protos.generated.UserProfile}
*/
public static final class UserProfile extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:com.palantir.example.profile.protos.generated.UserProfile)
UserProfileOrBuilder {
private static final long serialVersionUID = 0L;
// Use UserProfile.newBuilder() to construct.
private UserProfile(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private UserProfile() {
name_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new UserProfile();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private UserProfile(
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: {
com.google.protobuf.ByteString bs = input.readBytes();
bitField0_ |= 0x00000001;
name_ = bs;
break;
}
case 16: {
bitField0_ |= 0x00000002;
birthEpochDay_ = input.readSInt64();
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.palantir.example.profile.protos.generated.ProfilePersistence.internal_static_com_palantir_example_profile_protos_generated_UserProfile_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.palantir.example.profile.protos.generated.ProfilePersistence.internal_static_com_palantir_example_profile_protos_generated_UserProfile_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile.class, com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile.Builder.class);
}
private int bitField0_;
public static final int NAME_FIELD_NUMBER = 1;
private volatile java.lang.Object name_;
/**
* required string name = 1;
* @return Whether the name field is set.
*/
@java.lang.Override
public boolean hasName() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
* required string name = 1;
* @return The name.
*/
@java.lang.Override
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();
if (bs.isValidUtf8()) {
name_ = s;
}
return s;
}
}
/**
* required string name = 1;
* @return The bytes for name.
*/
@java.lang.Override
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 BIRTHEPOCHDAY_FIELD_NUMBER = 2;
private long birthEpochDay_;
/**
* required sint64 birthEpochDay = 2;
* @return Whether the birthEpochDay field is set.
*/
@java.lang.Override
public boolean hasBirthEpochDay() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
* required sint64 birthEpochDay = 2;
* @return The birthEpochDay.
*/
@java.lang.Override
public long getBirthEpochDay() {
return birthEpochDay_;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
if (!hasName()) {
memoizedIsInitialized = 0;
return false;
}
if (!hasBirthEpochDay()) {
memoizedIsInitialized = 0;
return false;
}
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (((bitField0_ & 0x00000001) != 0)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, name_);
}
if (((bitField0_ & 0x00000002) != 0)) {
output.writeSInt64(2, birthEpochDay_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, name_);
}
if (((bitField0_ & 0x00000002) != 0)) {
size += com.google.protobuf.CodedOutputStream
.computeSInt64Size(2, birthEpochDay_);
}
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 com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile)) {
return super.equals(obj);
}
com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile other = (com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile) obj;
if (hasName() != other.hasName()) return false;
if (hasName()) {
if (!getName()
.equals(other.getName())) return false;
}
if (hasBirthEpochDay() != other.hasBirthEpochDay()) return false;
if (hasBirthEpochDay()) {
if (getBirthEpochDay()
!= other.getBirthEpochDay()) 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();
if (hasName()) {
hash = (37 * hash) + NAME_FIELD_NUMBER;
hash = (53 * hash) + getName().hashCode();
}
if (hasBirthEpochDay()) {
hash = (37 * hash) + BIRTHEPOCHDAY_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getBirthEpochDay());
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile 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 com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile 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 com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile 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(com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile 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;
}
/**
* Protobuf type {@code com.palantir.example.profile.protos.generated.UserProfile}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:com.palantir.example.profile.protos.generated.UserProfile)
com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfileOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.palantir.example.profile.protos.generated.ProfilePersistence.internal_static_com_palantir_example_profile_protos_generated_UserProfile_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.palantir.example.profile.protos.generated.ProfilePersistence.internal_static_com_palantir_example_profile_protos_generated_UserProfile_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile.class, com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile.Builder.class);
}
// Construct using com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
name_ = "";
bitField0_ = (bitField0_ & ~0x00000001);
birthEpochDay_ = 0L;
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.palantir.example.profile.protos.generated.ProfilePersistence.internal_static_com_palantir_example_profile_protos_generated_UserProfile_descriptor;
}
@java.lang.Override
public com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile getDefaultInstanceForType() {
return com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile.getDefaultInstance();
}
@java.lang.Override
public com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile build() {
com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile buildPartial() {
com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile result = new com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) != 0)) {
to_bitField0_ |= 0x00000001;
}
result.name_ = name_;
if (((from_bitField0_ & 0x00000002) != 0)) {
result.birthEpochDay_ = birthEpochDay_;
to_bitField0_ |= 0x00000002;
}
result.bitField0_ = to_bitField0_;
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 com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile) {
return mergeFrom((com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile other) {
if (other == com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile.getDefaultInstance()) return this;
if (other.hasName()) {
bitField0_ |= 0x00000001;
name_ = other.name_;
onChanged();
}
if (other.hasBirthEpochDay()) {
setBirthEpochDay(other.getBirthEpochDay());
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
if (!hasName()) {
return false;
}
if (!hasBirthEpochDay()) {
return false;
}
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private java.lang.Object name_ = "";
/**
* required string name = 1;
* @return Whether the name field is set.
*/
public boolean hasName() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
* required string name = 1;
* @return The name.
*/
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();
if (bs.isValidUtf8()) {
name_ = s;
}
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* required string name = 1;
* @return The bytes for name.
*/
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;
}
}
/**
* required string name = 1;
* @param value The name to set.
* @return This builder for chaining.
*/
public Builder setName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
name_ = value;
onChanged();
return this;
}
/**
* required string name = 1;
* @return This builder for chaining.
*/
public Builder clearName() {
bitField0_ = (bitField0_ & ~0x00000001);
name_ = getDefaultInstance().getName();
onChanged();
return this;
}
/**
* required string name = 1;
* @param value The bytes for name to set.
* @return This builder for chaining.
*/
public Builder setNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
name_ = value;
onChanged();
return this;
}
private long birthEpochDay_ ;
/**
* required sint64 birthEpochDay = 2;
* @return Whether the birthEpochDay field is set.
*/
@java.lang.Override
public boolean hasBirthEpochDay() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
* required sint64 birthEpochDay = 2;
* @return The birthEpochDay.
*/
@java.lang.Override
public long getBirthEpochDay() {
return birthEpochDay_;
}
/**
* required sint64 birthEpochDay = 2;
* @param value The birthEpochDay to set.
* @return This builder for chaining.
*/
public Builder setBirthEpochDay(long value) {
bitField0_ |= 0x00000002;
birthEpochDay_ = value;
onChanged();
return this;
}
/**
* required sint64 birthEpochDay = 2;
* @return This builder for chaining.
*/
public Builder clearBirthEpochDay() {
bitField0_ = (bitField0_ & ~0x00000002);
birthEpochDay_ = 0L;
onChanged();
return this;
}
@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:com.palantir.example.profile.protos.generated.UserProfile)
}
// @@protoc_insertion_point(class_scope:com.palantir.example.profile.protos.generated.UserProfile)
private static final com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile();
}
public static com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile getDefaultInstance() {
return DEFAULT_INSTANCE;
}
@java.lang.Deprecated public static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public UserProfile parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new UserProfile(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 com.palantir.example.profile.protos.generated.ProfilePersistence.UserProfile getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_com_palantir_example_profile_protos_generated_UserProfile_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_com_palantir_example_profile_protos_generated_UserProfile_fieldAccessorTable;
public static com.google.protobuf.Descriptors.FileDescriptor
getDescriptor() {
return descriptor;
}
private static com.google.protobuf.Descriptors.FileDescriptor
descriptor;
static {
java.lang.String[] descriptorData = {
"\n\030ProfilePersistence.proto\022-com.palantir" +
".example.profile.protos.generated\"2\n\013Use" +
"rProfile\022\014\n\004name\030\001 \002(\t\022\025\n\rbirthEpochDay\030" +
"\002 \002(\022"
};
descriptor = com.google.protobuf.Descriptors.FileDescriptor
.internalBuildGeneratedFileFrom(descriptorData,
new com.google.protobuf.Descriptors.FileDescriptor[] {
});
internal_static_com_palantir_example_profile_protos_generated_UserProfile_descriptor =
getDescriptor().getMessageTypes().get(0);
internal_static_com_palantir_example_profile_protos_generated_UserProfile_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_com_palantir_example_profile_protos_generated_UserProfile_descriptor,
new java.lang.String[] { "Name", "BirthEpochDay", });
}
// @@protoc_insertion_point(outer_class_scope)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy