Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
*
* TYPE_UNKNOWN = 0;
*/
public static final int TYPE_UNKNOWN_VALUE = 0;
/**
*
* Field type double.
*
*
* TYPE_DOUBLE = 1;
*/
public static final int TYPE_DOUBLE_VALUE = 1;
/**
*
* Field type float.
*
*
* TYPE_FLOAT = 2;
*/
public static final int TYPE_FLOAT_VALUE = 2;
/**
*
* Field type int64.
*
*
* TYPE_INT64 = 3;
*/
public static final int TYPE_INT64_VALUE = 3;
/**
*
* Field type uint64.
*
*
* TYPE_UINT64 = 4;
*/
public static final int TYPE_UINT64_VALUE = 4;
/**
*
* Field type int32.
*
*
* TYPE_INT32 = 5;
*/
public static final int TYPE_INT32_VALUE = 5;
/**
*
* Field type fixed64.
*
*
* TYPE_FIXED64 = 6;
*/
public static final int TYPE_FIXED64_VALUE = 6;
/**
*
* Field type fixed32.
*
*
* TYPE_FIXED32 = 7;
*/
public static final int TYPE_FIXED32_VALUE = 7;
/**
*
* Field type bool.
*
*
* TYPE_BOOL = 8;
*/
public static final int TYPE_BOOL_VALUE = 8;
/**
*
* Field type string.
*
*
* TYPE_STRING = 9;
*/
public static final int TYPE_STRING_VALUE = 9;
/**
*
* Field type group. Proto2 syntax only, and deprecated.
*
*
* TYPE_GROUP = 10;
*/
public static final int TYPE_GROUP_VALUE = 10;
/**
*
* Field type message.
*
*
* TYPE_MESSAGE = 11;
*/
public static final int TYPE_MESSAGE_VALUE = 11;
/**
*
* Field type bytes.
*
*
* TYPE_BYTES = 12;
*/
public static final int TYPE_BYTES_VALUE = 12;
/**
*
* Field type uint32.
*
*
* TYPE_UINT32 = 13;
*/
public static final int TYPE_UINT32_VALUE = 13;
/**
*
* Field type enum.
*
*
* TYPE_ENUM = 14;
*/
public static final int TYPE_ENUM_VALUE = 14;
/**
*
* Field type sfixed32.
*
*
* TYPE_SFIXED32 = 15;
*/
public static final int TYPE_SFIXED32_VALUE = 15;
/**
*
* Field type sfixed64.
*
*
* TYPE_SFIXED64 = 16;
*/
public static final int TYPE_SFIXED64_VALUE = 16;
/**
*
* Field type sint32.
*
*
* TYPE_SINT32 = 17;
*/
public static final int TYPE_SINT32_VALUE = 17;
/**
*
* Field type sint64.
*
*
* TYPE_SINT64 = 18;
*/
public static final int TYPE_SINT64_VALUE = 18;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static Kind valueOf(int value) {
return forNumber(value);
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
*/
public static Kind forNumber(int value) {
switch (value) {
case 0: return TYPE_UNKNOWN;
case 1: return TYPE_DOUBLE;
case 2: return TYPE_FLOAT;
case 3: return TYPE_INT64;
case 4: return TYPE_UINT64;
case 5: return TYPE_INT32;
case 6: return TYPE_FIXED64;
case 7: return TYPE_FIXED32;
case 8: return TYPE_BOOL;
case 9: return TYPE_STRING;
case 10: return TYPE_GROUP;
case 11: return TYPE_MESSAGE;
case 12: return TYPE_BYTES;
case 13: return TYPE_UINT32;
case 14: return TYPE_ENUM;
case 15: return TYPE_SFIXED32;
case 16: return TYPE_SFIXED64;
case 17: return TYPE_SINT32;
case 18: return TYPE_SINT64;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
Kind> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public Kind findValueByNumber(int number) {
return Kind.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 com.google.protobuf.Field.getDescriptor().getEnumTypes().get(0);
}
private static final Kind[] VALUES = values();
public static Kind 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 Kind(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:google.protobuf.Field.Kind)
}
/**
*
* Whether a field is optional, required, or repeated.
*
*
* CARDINALITY_UNKNOWN = 0;
*/
public static final int CARDINALITY_UNKNOWN_VALUE = 0;
/**
*
* For optional fields.
*
*
* CARDINALITY_OPTIONAL = 1;
*/
public static final int CARDINALITY_OPTIONAL_VALUE = 1;
/**
*
* For required fields. Proto2 syntax only.
*
*
* CARDINALITY_REQUIRED = 2;
*/
public static final int CARDINALITY_REQUIRED_VALUE = 2;
/**
*
* For repeated fields.
*
*
* CARDINALITY_REPEATED = 3;
*/
public static final int CARDINALITY_REPEATED_VALUE = 3;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static Cardinality valueOf(int value) {
return forNumber(value);
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
*/
public static Cardinality forNumber(int value) {
switch (value) {
case 0: return CARDINALITY_UNKNOWN;
case 1: return CARDINALITY_OPTIONAL;
case 2: return CARDINALITY_REQUIRED;
case 3: return CARDINALITY_REPEATED;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
Cardinality> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public Cardinality findValueByNumber(int number) {
return Cardinality.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 com.google.protobuf.Field.getDescriptor().getEnumTypes().get(1);
}
private static final Cardinality[] VALUES = values();
public static Cardinality 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 Cardinality(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:google.protobuf.Field.Cardinality)
}
public static final int KIND_FIELD_NUMBER = 1;
private int kind_;
/**
*
* The field type.
*
*
* .google.protobuf.Field.Kind kind = 1;
* @return The enum numeric value on the wire for kind.
*/
public int getKindValue() {
return kind_;
}
/**
*
* The field type.
*
*
* .google.protobuf.Field.Kind kind = 1;
* @return The kind.
*/
public com.google.protobuf.Field.Kind getKind() {
@SuppressWarnings("deprecation")
com.google.protobuf.Field.Kind result = com.google.protobuf.Field.Kind.valueOf(kind_);
return result == null ? com.google.protobuf.Field.Kind.UNRECOGNIZED : result;
}
public static final int CARDINALITY_FIELD_NUMBER = 2;
private int cardinality_;
/**
*
* The field cardinality.
*
*
* .google.protobuf.Field.Cardinality cardinality = 2;
* @return The enum numeric value on the wire for cardinality.
*/
public int getCardinalityValue() {
return cardinality_;
}
/**
*
* The field cardinality.
*
*
* .google.protobuf.Field.Cardinality cardinality = 2;
* @return The cardinality.
*/
public com.google.protobuf.Field.Cardinality getCardinality() {
@SuppressWarnings("deprecation")
com.google.protobuf.Field.Cardinality result = com.google.protobuf.Field.Cardinality.valueOf(cardinality_);
return result == null ? com.google.protobuf.Field.Cardinality.UNRECOGNIZED : result;
}
public static final int NUMBER_FIELD_NUMBER = 3;
private int number_;
/**
*
* The field number.
*
*
* int32 number = 3;
* @return The number.
*/
public int getNumber() {
return number_;
}
public static final int NAME_FIELD_NUMBER = 4;
private volatile java.lang.Object name_;
/**
*
* The field name.
*
*
* string name = 4;
* @return The name.
*/
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 field name.
*
*
* string name = 4;
* @return The bytes for name.
*/
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 TYPE_URL_FIELD_NUMBER = 6;
private volatile java.lang.Object typeUrl_;
/**
*
* The field type URL, without the scheme, for message or enumeration
* types. Example: `"type.googleapis.com/google.protobuf.Timestamp"`.
*
* The field type URL, without the scheme, for message or enumeration
* types. Example: `"type.googleapis.com/google.protobuf.Timestamp"`.
*
*
* string type_url = 6;
* @return The bytes for typeUrl.
*/
public com.google.protobuf.ByteString
getTypeUrlBytes() {
java.lang.Object ref = typeUrl_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
typeUrl_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int ONEOF_INDEX_FIELD_NUMBER = 7;
private int oneofIndex_;
/**
*
* The index of the field type in `Type.oneofs`, for message or enumeration
* types. The first type has index 1; zero means the type is not in the list.
*
*
* int32 oneof_index = 7;
* @return The oneofIndex.
*/
public int getOneofIndex() {
return oneofIndex_;
}
public static final int PACKED_FIELD_NUMBER = 8;
private boolean packed_;
/**
*
* Whether to use alternative packed wire representation.
*
*
* bool packed = 8;
* @return The packed.
*/
public boolean getPacked() {
return packed_;
}
public static final int OPTIONS_FIELD_NUMBER = 9;
private java.util.List options_;
/**
*
*
* .google.protobuf.Field.Kind kind = 1;
* @return The enum numeric value on the wire for kind.
*/
public int getKindValue() {
return kind_;
}
/**
*
* The field type.
*
*
* .google.protobuf.Field.Kind kind = 1;
* @param value The enum numeric value on the wire for kind to set.
* @return This builder for chaining.
*/
public Builder setKindValue(int value) {
kind_ = value;
onChanged();
return this;
}
/**
*
* The field type.
*
*
* .google.protobuf.Field.Kind kind = 1;
* @return The kind.
*/
public com.google.protobuf.Field.Kind getKind() {
@SuppressWarnings("deprecation")
com.google.protobuf.Field.Kind result = com.google.protobuf.Field.Kind.valueOf(kind_);
return result == null ? com.google.protobuf.Field.Kind.UNRECOGNIZED : result;
}
/**
*
* The field type.
*
*
* .google.protobuf.Field.Kind kind = 1;
* @param value The kind to set.
* @return This builder for chaining.
*/
public Builder setKind(com.google.protobuf.Field.Kind value) {
if (value == null) {
throw new NullPointerException();
}
kind_ = value.getNumber();
onChanged();
return this;
}
/**
*
* The field type.
*
*
* .google.protobuf.Field.Kind kind = 1;
* @return This builder for chaining.
*/
public Builder clearKind() {
kind_ = 0;
onChanged();
return this;
}
private int cardinality_ = 0;
/**
*
* The field cardinality.
*
*
* .google.protobuf.Field.Cardinality cardinality = 2;
* @return The enum numeric value on the wire for cardinality.
*/
public int getCardinalityValue() {
return cardinality_;
}
/**
*
* The field cardinality.
*
*
* .google.protobuf.Field.Cardinality cardinality = 2;
* @param value The enum numeric value on the wire for cardinality to set.
* @return This builder for chaining.
*/
public Builder setCardinalityValue(int value) {
cardinality_ = value;
onChanged();
return this;
}
/**
*
* The field cardinality.
*
*
* .google.protobuf.Field.Cardinality cardinality = 2;
* @return The cardinality.
*/
public com.google.protobuf.Field.Cardinality getCardinality() {
@SuppressWarnings("deprecation")
com.google.protobuf.Field.Cardinality result = com.google.protobuf.Field.Cardinality.valueOf(cardinality_);
return result == null ? com.google.protobuf.Field.Cardinality.UNRECOGNIZED : result;
}
/**
*
* The field cardinality.
*
*
* .google.protobuf.Field.Cardinality cardinality = 2;
* @param value The cardinality to set.
* @return This builder for chaining.
*/
public Builder setCardinality(com.google.protobuf.Field.Cardinality value) {
if (value == null) {
throw new NullPointerException();
}
cardinality_ = value.getNumber();
onChanged();
return this;
}
/**
*
* The field cardinality.
*
*
* .google.protobuf.Field.Cardinality cardinality = 2;
* @return This builder for chaining.
*/
public Builder clearCardinality() {
cardinality_ = 0;
onChanged();
return this;
}
private int number_ ;
/**
*
* The field number.
*
*
* int32 number = 3;
* @return The number.
*/
public int getNumber() {
return number_;
}
/**
*
* The field number.
*
*
* int32 number = 3;
* @param value The number to set.
* @return This builder for chaining.
*/
public Builder setNumber(int value) {
number_ = value;
onChanged();
return this;
}
/**
*
* The field number.
*
*
* int32 number = 3;
* @return This builder for chaining.
*/
public Builder clearNumber() {
number_ = 0;
onChanged();
return this;
}
private java.lang.Object name_ = "";
/**
*
* The field name.
*
*
* string name = 4;
* @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();
name_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* The field name.
*
*
* string name = 4;
* @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;
}
}
/**
*
* The field name.
*
*
* string name = 4;
* @param value The name to set.
* @return This builder for chaining.
*/
public Builder setName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
name_ = value;
onChanged();
return this;
}
/**
*
* The field name.
*
*
* string name = 4;
* @return This builder for chaining.
*/
public Builder clearName() {
name_ = getDefaultInstance().getName();
onChanged();
return this;
}
/**
*
* The field name.
*
*
* string name = 4;
* @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();
}
checkByteStringIsUtf8(value);
name_ = value;
onChanged();
return this;
}
private java.lang.Object typeUrl_ = "";
/**
*
* The field type URL, without the scheme, for message or enumeration
* types. Example: `"type.googleapis.com/google.protobuf.Timestamp"`.
*
* The field type URL, without the scheme, for message or enumeration
* types. Example: `"type.googleapis.com/google.protobuf.Timestamp"`.
*
*
* string type_url = 6;
* @return The bytes for typeUrl.
*/
public com.google.protobuf.ByteString
getTypeUrlBytes() {
java.lang.Object ref = typeUrl_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
typeUrl_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The field type URL, without the scheme, for message or enumeration
* types. Example: `"type.googleapis.com/google.protobuf.Timestamp"`.
*
*
* string type_url = 6;
* @param value The typeUrl to set.
* @return This builder for chaining.
*/
public Builder setTypeUrl(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
typeUrl_ = value;
onChanged();
return this;
}
/**
*
* The field type URL, without the scheme, for message or enumeration
* types. Example: `"type.googleapis.com/google.protobuf.Timestamp"`.
*
*
* string type_url = 6;
* @return This builder for chaining.
*/
public Builder clearTypeUrl() {
typeUrl_ = getDefaultInstance().getTypeUrl();
onChanged();
return this;
}
/**
*
* The field type URL, without the scheme, for message or enumeration
* types. Example: `"type.googleapis.com/google.protobuf.Timestamp"`.
*
*
* string type_url = 6;
* @param value The bytes for typeUrl to set.
* @return This builder for chaining.
*/
public Builder setTypeUrlBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
typeUrl_ = value;
onChanged();
return this;
}
private int oneofIndex_ ;
/**
*
* The index of the field type in `Type.oneofs`, for message or enumeration
* types. The first type has index 1; zero means the type is not in the list.
*
*
* int32 oneof_index = 7;
* @return The oneofIndex.
*/
public int getOneofIndex() {
return oneofIndex_;
}
/**
*
* The index of the field type in `Type.oneofs`, for message or enumeration
* types. The first type has index 1; zero means the type is not in the list.
*
*
* int32 oneof_index = 7;
* @param value The oneofIndex to set.
* @return This builder for chaining.
*/
public Builder setOneofIndex(int value) {
oneofIndex_ = value;
onChanged();
return this;
}
/**
*
* The index of the field type in `Type.oneofs`, for message or enumeration
* types. The first type has index 1; zero means the type is not in the list.
*
*
* int32 oneof_index = 7;
* @return This builder for chaining.
*/
public Builder clearOneofIndex() {
oneofIndex_ = 0;
onChanged();
return this;
}
private boolean packed_ ;
/**
*
* Whether to use alternative packed wire representation.
*
*
* bool packed = 8;
* @return The packed.
*/
public boolean getPacked() {
return packed_;
}
/**
*
* Whether to use alternative packed wire representation.
*
*
* bool packed = 8;
* @param value The packed to set.
* @return This builder for chaining.
*/
public Builder setPacked(boolean value) {
packed_ = value;
onChanged();
return this;
}
/**
*
* Whether to use alternative packed wire representation.
*